From cadda10a14503be69a844a76ca04a8fc9a74a1b1 Mon Sep 17 00:00:00 2001 From: "Marc G. Fournier" Date: Tue, 3 Feb 1998 19:40:15 +0000 Subject: [PATCH] I tried to match up the if/test stuff...fixed now, I think --- src/configure | 2 +- src/configure.in | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/configure b/src/configure index 1910dc4bf3..d86f3205a3 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 16e475c11c..c8877a5818 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 -- 2.11.0