From d0bfe5c176872a9547a6a1add3a16f5d71fb8f89 Mon Sep 17 00:00:00 2001 From: Viktor Szakats Date: Tue, 17 Feb 2009 08:18:32 +0000 Subject: [PATCH] 2009-02-17 09:18 UTC+0100 Viktor Szakats (harbour.01 syenar hu) * make_gcc.sh * contrib/make_gcc_all.sh ! Fixed typo in if condition. --- harbour/ChangeLog | 5 +++++ harbour/contrib/make_gcc_all.sh | 2 +- harbour/make_gcc.sh | 2 +- 3 files changed, 7 insertions(+), 2 deletions(-) diff --git a/harbour/ChangeLog b/harbour/ChangeLog index 3fd8c0a85c..f059a20d63 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -8,6 +8,11 @@ 2009-12-31 13:59 UTC+0100 Foo Bar (foo.bar foobar.org) */ +2009-02-17 09:18 UTC+0100 Viktor Szakats (harbour.01 syenar hu) + * make_gcc.sh + * contrib/make_gcc_all.sh + ! Fixed typo in if condition. + 2009-02-17 03:19 UTC+0100 Viktor Szakats (harbour.01 syenar hu) * source/rtl/fstemp.c ! Fixed temp filename generation in {(linux|bsd)&!owatcom} diff --git a/harbour/contrib/make_gcc_all.sh b/harbour/contrib/make_gcc_all.sh index 719cb1a0be..3d3c2f4ef4 100755 --- a/harbour/contrib/make_gcc_all.sh +++ b/harbour/contrib/make_gcc_all.sh @@ -66,7 +66,7 @@ fi # Revert Cygwin architecture to 'win'. # After all it's under Windows OS. -if [ "$HB_ARCHITECTURE" == "cyg" ] +if [ "$HB_ARCHITECTURE" = "cyg" ] then export HB_ARCHITECTURE=win fi diff --git a/harbour/make_gcc.sh b/harbour/make_gcc.sh index 045a0adc54..78250e5369 100755 --- a/harbour/make_gcc.sh +++ b/harbour/make_gcc.sh @@ -176,7 +176,7 @@ mkdir -p obj/$HB_CC_NAME/mt obj/$HB_CC_NAME/mt_dll obj/$HB_CC_NAME/dll \ # Revert Cygwin architecture to 'win'. # After all it's under Windows OS. -if [ "$HB_ARCHITECTURE" == "cyg" ] +if [ "$HB_ARCHITECTURE" = "cyg" ] then export HB_ARCHITECTURE=win fi