Commit fc45f3fe by Daniel Jacobowitz Committed by Daniel Jacobowitz

configure.in: Use an absolute path to install-sh.

	* configure.in: Use an absolute path to install-sh.
	* configure: Regenerated.

From-SVN: r89495
parent b1a70a1a
2004-10-23 Daniel Jacobowitz <dan@debian.org>
* configure.in: Use an absolute path to install-sh.
* configure: Regenerated.
2004-10-19 Aaron W. LaFramboise <aaronavay62@aaronwl.com>
* MAINTAINERS (Write After Approval): Add myself.
......
......@@ -80,10 +80,17 @@ AC_SUBST(TOPLEVEL_CONFIGURE_ARGUMENTS)
moveifchange=${srcdir}/move-if-change
srcpwd=`cd ${srcdir} ; ${PWDCMD-pwd}`
# We pass INSTALL explicitly to sub-makes. Make sure that it is not
# a relative path.
if test "$INSTALL" = "${srcdir}/install-sh -c"; then
INSTALL="${srcpwd}/install-sh -c"
fi
# Set srcdir to "." if that's what it is.
# This is important for multilib support.
pwd=`${PWDCMD-pwd}`
srcpwd=`cd ${srcdir} ; ${PWDCMD-pwd}`
if test "${pwd}" = "${srcpwd}" ; then
srcdir=.
fi
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment