diff options
author | Daniel Stenberg <daniel@haxx.se> | 2003-09-12 20:45:39 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2003-09-12 20:45:39 +0000 |
commit | de3281a3a84e653f901f3955454c6c1249061591 (patch) | |
tree | b7487b06e4b239fcddda6b5a8cb19124138ae59d /lib | |
parent | 6e16985156b17976a3ba037a7caa5e2d295ef1f9 (diff) |
blank the LIBS variable, as we don't need any libs when we link the lib.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/Makefile.am | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/Makefile.am b/lib/Makefile.am index 691d7b741..eb4090629 100644 --- a/lib/Makefile.am +++ b/lib/Makefile.am @@ -66,6 +66,10 @@ endif libcurl_la_LDFLAGS = $(UNDEF) $(VERSION) $(ARESLIB) +# We don't need the libs when we build the lib, they are needed when linking +# the app later. +LIBS = + libcurl_la_SOURCES = arpa_telnet.h file.c getpass.h netrc.h timeval.c \ base64.c file.h hostip.c progress.c timeval.h base64.h formdata.c \ hostip.h progress.h cookie.c formdata.h http.c sendf.c cookie.h ftp.c \ |