diff options
author | levine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1997-08-21 21:57:40 +0000 |
---|---|---|
committer | levine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1997-08-21 21:57:40 +0000 |
commit | 58c4fbca13d28bc03f87aaecadbbdbfb574b610b (patch) | |
tree | 74a26e8514a3c7673ee4265d61ef3f432a812e24 /include/makeinclude/platform_sco-nothread.GNU | |
parent | cbea0372c293c997f55b8f78d53b1f61d3e085fc (diff) | |
download | ATCD-58c4fbca13d28bc03f87aaecadbbdbfb574b610b.tar.gz |
use VLDLIBS instead of LIBS in PRELIB now that -lACE is only contained in VLDLIBS
Diffstat (limited to 'include/makeinclude/platform_sco-nothread.GNU')
-rw-r--r-- | include/makeinclude/platform_sco-nothread.GNU | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/makeinclude/platform_sco-nothread.GNU b/include/makeinclude/platform_sco-nothread.GNU index e5c6473477e..6fc211b951e 100644 --- a/include/makeinclude/platform_sco-nothread.GNU +++ b/include/makeinclude/platform_sco-nothread.GNU @@ -17,5 +17,5 @@ SOFLAGS = $(CPPFLAGS) SOBUILD = $(COMPILE.cc) $(PIC) -o $(VSHDIR)$*.so $< PRELIB = (echo "int main() { return 0; }" > gcctemp.c && \ $(COMPILE.cc) -o gcctemp.o gcctemp.c && \ - $(LINK.cc) -o gcctemp gcctemp.o $^ $(LDFLAGS) $(LIBS); \ + $(LINK.cc) -o gcctemp gcctemp.o $^ $(LDFLAGS) $(VLDLIBS); \ status=$$?; exit $$status) |