Check-in Number:
|
4131 | |
Date: |
2001-Jun-29 00:42:12 (local)
2001-Jun-28 22:42:12 (UTC) |
User: | simons |
Branch: | |
Comment: |
Link test binary with CC, not CXX. |
Tickets: |
|
Inspections: |
|
Files: |
|
ossp-pkg/xds/Makefile 1.1 -> 1.2
--- Makefile 2001/06/28 12:32:04 1.1
+++ Makefile 2001/06/28 22:42:12 1.2
@@ -18,7 +18,7 @@
$(CXX) $(CPPFLAGS) $(WARNFLAGS) $(OPTFLAGS) $(CXXFLAGS) -c $<
test: test.o
- $(CXX) $(LDFLAGS) -o $@ test.o
+ $(CC) $(LDFLAGS) -o $@ test.o
clean::
rm -f test.o test
|
|