diff options
author | Thomas Graichen <graichen@cvs.openbsd.org> | 1997-04-23 15:40:03 +0000 |
---|---|---|
committer | Thomas Graichen <graichen@cvs.openbsd.org> | 1997-04-23 15:40:03 +0000 |
commit | 661f9153af046f17b18404425b365e2e1ba33574 (patch) | |
tree | ffc3d03337474b14b15d234df014a498ccc6ab1a /gnu/usr.bin/binutils/mmalloc | |
parent | 74568dffac788c7812e22fabcdd6830ce3b672c4 (diff) |
add a lot of /bin/sh before calling scripts like config.guess and so
on - this way now the whole tree builds without requiring any file
being executable (binutils was the last which required it) - now
ctm -> cvs checkout -> make build works just fine (aside from
other bugs in the source tree :-)
Diffstat (limited to 'gnu/usr.bin/binutils/mmalloc')
-rw-r--r-- | gnu/usr.bin/binutils/mmalloc/configure | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gnu/usr.bin/binutils/mmalloc/configure b/gnu/usr.bin/binutils/mmalloc/configure index c44030e4711..fa827af17cd 100644 --- a/gnu/usr.bin/binutils/mmalloc/configure +++ b/gnu/usr.bin/binutils/mmalloc/configure @@ -716,7 +716,7 @@ test -z "$INSTALL_DATA" && INSTALL_DATA='${INSTALL} -m 644' # Make sure we can run config.sub. -if $ac_config_sub sun4 >/dev/null 2>&1; then : +if /bin/sh $ac_config_sub sun4 >/dev/null 2>&1; then : else { echo "configure: error: can not run $ac_config_sub" 1>&2; exit 1; } fi @@ -734,7 +734,7 @@ NONE) esac ;; esac -host=`$ac_config_sub $host_alias` +host=`/bin/sh $ac_config_sub $host_alias` host_cpu=`echo $host | sed 's/^\(.*\)-\(.*\)-\(.*\)$/\1/'` host_vendor=`echo $host | sed 's/^\(.*\)-\(.*\)-\(.*\)$/\2/'` host_os=`echo $host | sed 's/^\(.*\)-\(.*\)-\(.*\)$/\3/'` @@ -751,7 +751,7 @@ NONE) esac ;; esac -build=`$ac_config_sub $build_alias` +build=`/bin/sh $ac_config_sub $build_alias` build_cpu=`echo $build | sed 's/^\(.*\)-\(.*\)-\(.*\)$/\1/'` build_vendor=`echo $build | sed 's/^\(.*\)-\(.*\)-\(.*\)$/\2/'` build_os=`echo $build | sed 's/^\(.*\)-\(.*\)-\(.*\)$/\3/'` |