diff options
author | Doug MacEachern <dougm@apache.org> | 2002-01-06 18:39:52 +0100 |
---|---|---|
committer | Doug MacEachern <dougm@apache.org> | 2002-01-06 18:39:52 +0100 |
commit | 68538b764b93cec5055f4acb53504d597a6b0c14 (patch) | |
tree | fc5ed440123252504fe2dbf979ac2df27f814923 /Makefile.in | |
parent | Bypass a strdup and an 8KB local variable in the common case where (diff) | |
download | apache2-68538b764b93cec5055f4acb53504d597a6b0c14.tar.xz apache2-68538b764b93cec5055f4acb53504d597a6b0c14.zip |
need to use $(top_srcdir) when installing build/instdso.sh
else make install does not work when when configured with a --srcdir
PR:
Obtained from:
Submitted by:
Reviewed by:
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@92753 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.in b/Makefile.in index 4a9ec2cad6..a964a3610a 100644 --- a/Makefile.in +++ b/Makefile.in @@ -89,7 +89,7 @@ install-build: @sed 's#LIBTOOL = \(.*\)#LIBTOOL = $(SHELL) $(installbuilddir)/libtool $(LTFLAGS)#' \ config_vars.mk > $(installbuilddir)/config_vars.mk; \ cp build/*.mk $(installbuilddir); \ - cp build/instdso.sh $(installbuilddir); \ + cp $(top_srcdir)/build/instdso.sh $(installbuilddir); \ cp srclib/apr/libtool $(installbuilddir); \ if test -f srclib/apr/shlibtool; then \ cp srclib/apr/shlibtool $(installbuilddir); \ |