diff options
author | Nick Clifton <nickc@redhat.com> | 2002-05-22 09:21:32 +0000 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 2002-05-22 09:21:32 +0000 |
commit | 6acce4b8bd7cc433e0deb2ec99fbd6d8e89a3033 (patch) | |
tree | 52e4cd2144fa71ee4d4ea252b444afbd16330028 /configure.in | |
parent | 328001eea687420d05a1d74621062d2eb55d1abb (diff) | |
download | cygnal-6acce4b8bd7cc433e0deb2ec99fbd6d8e89a3033.tar.gz cygnal-6acce4b8bd7cc433e0deb2ec99fbd6d8e89a3033.tar.bz2 cygnal-6acce4b8bd7cc433e0deb2ec99fbd6d8e89a3033.zip |
Allow for PWDCMD to override hardcoded pwd.
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.in b/configure.in index 75ca1a3ba..5a02dd20e 100644 --- a/configure.in +++ b/configure.in @@ -446,7 +446,7 @@ target_subdir=${target_alias} if test ! -d ${target_subdir} ; then if mkdir ${target_subdir} ; then true else - echo "'*** could not make ${PWD=`pwd`}/${target_subdir}" 1>&2 + echo "'*** could not make ${PWD=`${PWDCMD-pwd}`}/${target_subdir}" 1>&2 exit 1 fi fi @@ -457,7 +457,7 @@ if test x"${build_alias}" != x"${host}" ; then if test ! -d ${build_subdir} ; then if mkdir ${build_subdir} ; then true else - echo "'*** could not make ${PWD=`pwd`}/${build_subdir}" 1>&2 + echo "'*** could not make ${PWD=`${PWDCMD-pwd}`}/${build_subdir}" 1>&2 exit 1 fi fi |