From: Theodore Ts'o Date: Wed, 8 Apr 1998 06:05:49 +0000 (+0000) Subject: ChangeLog, configure.in, configure: X-Git-Tag: E2FSPROGS-1_12~26 X-Git-Url: https://git.whamcloud.com/?a=commitdiff_plain;h=ffe1991f4760dc03da26816d9a459a0b62b597a0;p=tools%2Fe2fsprogs.git ChangeLog, configure.in, configure: Fix missing "test" invokation in configure.in test. (Only affected default non-Linux builds). --- diff --git a/ChangeLog b/ChangeLog index dd55cfb..606ea3c 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +Wed Apr 8 02:03:48 1998 Theodore Y. Ts'o + + * Fix missing "test" invokation in configure.in test. (Only + affected default non-Linux builds). + 1998-03-30 Theodore Ts'o * configure.in: Change how the installation directions are diff --git a/configure b/configure index 4833d0e..36b6fd8 100644 --- a/configure +++ b/configure @@ -2344,7 +2344,7 @@ linux* | gnu*) ;; esac if test "$root_prefix" = NONE ; then - if "$prefix" = NONE ; then + if test "$prefix" = NONE ; then root_prefix="$ac_default_prefix" else root_prefix="$prefix" diff --git a/configure.in b/configure.in index 9d40525..1b1a9f4 100644 --- a/configure.in +++ b/configure.in @@ -472,7 +472,7 @@ linux* | gnu*) ;; esac if test "$root_prefix" = NONE ; then - if "$prefix" = NONE ; then + if test "$prefix" = NONE ; then root_prefix="$ac_default_prefix" else root_prefix="$prefix"