summaryrefslogtreecommitdiff
path: root/build
diff options
context:
space:
mode:
authorSascha Schumann <sas@php.net>2001-09-10 17:15:03 +0000
committerSascha Schumann <sas@php.net>2001-09-10 17:15:03 +0000
commit2547f86060a602b0efaf3b883ea0e7ccd1a2c9b4 (patch)
tree98c16f732777b55b2fa1cbcf0d305f2c0eafaca0 /build
parenta4f9a162252f7a09a3e745f735bce1c645190d50 (diff)
downloadphp-git-2547f86060a602b0efaf3b883ea0e7ccd1a2c9b4.tar.gz
Use $(LINK) for libraries, but $(LINK_CLEAN) for creating programs.
Also pass only $(CFLAGS_CLEAN) into thttpd's Makefile.
Diffstat (limited to 'build')
-rw-r--r--build/library.mk2
1 files changed, 1 insertions, 1 deletions
diff --git a/build/library.mk b/build/library.mk
index 06b885b2bf..8cb86760e4 100644
--- a/build/library.mk
+++ b/build/library.mk
@@ -20,4 +20,4 @@
LTLIBRARY_OBJECTS = $(LTLIBRARY_SOURCES:.c=.lo) $(LTLIBRARY_OBJECTS_X)
$(LTLIBRARY_NAME): $(LTLIBRARY_OBJECTS) $(LTLIBRARY_DEPENDENCIES)
- $(LINK_CLEAN) $(LTLIBRARY_LDFLAGS) $(LTLIBRARY_OBJECTS) $(LTLIBRARY_LIBADD)
+ $(LINK) $(LTLIBRARY_LDFLAGS) $(LTLIBRARY_OBJECTS) $(LTLIBRARY_LIBADD)