diff options
author | Marc G. Fournier <scrappy@hub.org> | 1998-02-03 19:40:15 +0000 |
---|---|---|
committer | Marc G. Fournier <scrappy@hub.org> | 1998-02-03 19:40:15 +0000 |
commit | cadda10a14503be69a844a76ca04a8fc9a74a1b1 (patch) | |
tree | 6042b547f5985399ae878f7492ac4ec1cac52af5 | |
parent | 00f325d510ea935d56015b983a7f3a5ec4acfbd3 (diff) | |
download | postgresql-cadda10a14503be69a844a76ca04a8fc9a74a1b1.tar.gz postgresql-cadda10a14503be69a844a76ca04a8fc9a74a1b1.zip |
I tried to match up the if/test stuff...fixed now, I think
-rwxr-xr-x | src/configure | 2 | ||||
-rw-r--r-- | src/configure.in | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/configure b/src/configure index 1910dc4bf3e..d86f3205a3a 100755 --- a/src/configure +++ b/src/configure @@ -606,7 +606,7 @@ nextstep*) os=nextstep;; exit;; esac -if test $need_tas = "yes" +if test "X$need_tas" = "Xyes" then TAS=tas.o diff --git a/src/configure.in b/src/configure.in index 16e475c11c6..c8877a58186 100644 --- a/src/configure.in +++ b/src/configure.in @@ -42,7 +42,7 @@ nextstep*) os=nextstep;; exit;; esac -if test $need_tas = "yes" +if test "X$need_tas" = "Xyes" then AC_LINK_FILES(backend/port/tas/${os}.s, backend/port/tas.s) TAS=tas.o |