summaryrefslogtreecommitdiff
path: root/build/rules.mk.in
diff options
context:
space:
mode:
authorJustin Erenkrantz <jerenkrantz@apache.org>2001-08-22 15:58:05 +0000
committerJustin Erenkrantz <jerenkrantz@apache.org>2001-08-22 15:58:05 +0000
commit35726709d478b1a3389a786f6bcc063c5bacb583 (patch)
tree998542e5e471b51bc7eaafa247b2031c20231ad4 /build/rules.mk.in
parente811bc50a1e64a3ba9cc60138dce3047920ffc2a (diff)
downloadhttpd-35726709d478b1a3389a786f6bcc063c5bacb583.tar.gz
Ensure that libtool does the installation for us. This way we will actually
copy over the binaries rather than libtool wrapper scripts which would copy the binaries to .libs/lt-* at first execution. Reviewed by: Greg Stein git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@90492 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'build/rules.mk.in')
-rw-r--r--build/rules.mk.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/build/rules.mk.in b/build/rules.mk.in
index 659cbcf877..3cd53f8ffa 100644
--- a/build/rules.mk.in
+++ b/build/rules.mk.in
@@ -90,7 +90,7 @@ MOD_LINK = $(LIBTOOL) --mode=link $(COMPILE) -module $(LT_LDFLAGS) $(ALL_LDFLAGS
# Helper programs
MKINSTALLDIRS = $(abs_srcdir)/build/mkdir.sh
-INSTALL = $(abs_srcdir)/build/install.sh -c
+INSTALL = $(LIBTOOL) --mode=install $(abs_srcdir)/build/install.sh -c
INSTALL_DATA = $(INSTALL) -m 644
INSTALL_PROGRAM = $(INSTALL) -m 755 $(INSTALL_PROG_FLAGS)