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.
This commit is contained in:
Viktor Szakats
2009-02-17 08:18:32 +00:00
parent 4fdb1fceca
commit d0bfe5c176
3 changed files with 7 additions and 2 deletions

View File

@@ -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}

View File

@@ -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

View File

@@ -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