diff options
author | Niklas Hallqvist <niklas@cvs.openbsd.org> | 1998-05-10 19:43:06 +0000 |
---|---|---|
committer | Niklas Hallqvist <niklas@cvs.openbsd.org> | 1998-05-10 19:43:06 +0000 |
commit | 5fc91fbe4ca56874287a24e218a60cfd9aacbe7c (patch) | |
tree | 2640a3bd8e43b79ba4080b7612352a9c199ca0d4 | |
parent | b06c0210121a8d85b3ce7d5ee103acb9ced99334 (diff) |
"sh /bin/sh config.guess" does not work
-rw-r--r-- | gnu/usr.bin/gcc/configure | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/usr.bin/gcc/configure b/gnu/usr.bin/gcc/configure index b33a9f4f70a..325bc546fb8 100644 --- a/gnu/usr.bin/gcc/configure +++ b/gnu/usr.bin/gcc/configure @@ -716,7 +716,7 @@ case "$host_alias" in NONE) case $nonopt in NONE) - if host_alias=`sh $ac_config_guess`; then : + if host_alias=`$ac_config_guess`; then : else { echo "configure: error: can not guess host type; you must specify one" 1>&2; exit 1; } fi ;; *) host_alias=$nonopt ;; |