Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit cadda10

Browse files
committed
I tried to match up the if/test stuff...fixed now, I think
1 parent 00f325d commit cadda10

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/configure

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -606,7 +606,7 @@ nextstep*) os=nextstep;;
606606
exit;;
607607
esac
608608

609-
if test $need_tas = "yes"
609+
if test "X$need_tas" = "Xyes"
610610
then
611611

612612
TAS=tas.o

src/configure.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ nextstep*) os=nextstep;;
4242
exit;;
4343
esac
4444

45-
if test $need_tas = "yes"
45+
if test "X$need_tas" = "Xyes"
4646
then
4747
AC_LINK_FILES(backend/port/tas/${os}.s, backend/port/tas.s)
4848
TAS=tas.o

0 commit comments

Comments
 (0)