From: Doug MacEachern Date: Sun, 6 Jan 2002 17:39:52 +0000 (+0000) Subject: need to use $(top_srcdir) when installing build/instdso.sh X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=9564cb9e9935cd6a254afb727f99b40769c292c7;p=apache 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 --- 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); \