2007-12-21 18:49 UTC+0100 Przemyslaw Czerpak (druzus/at/priv.onet.pl)

* harbour/make_xmingw.sh
    * fixed two typos - many thanks to Phil Krylov for locating them
This commit is contained in:
Przemyslaw Czerpak
2007-12-21 17:50:07 +00:00
parent b9e3d16323
commit d2a6ec646b
2 changed files with 6 additions and 2 deletions

View File

@@ -8,6 +8,10 @@
2002-12-01 13:30 UTC+0100 Foo Bar <foo.bar@foobar.org>
*/
2007-12-21 18:49 UTC+0100 Przemyslaw Czerpak (druzus/at/priv.onet.pl)
* harbour/make_xmingw.sh
* fixed two typos - many thanks to Phil Krylov for locating them
2007-12-21 18:21 UTC+0100 Przemyslaw Czerpak (druzus/at/priv.onet.pl)
* harbour/bin/pack_src.sh
* try to detect GNU tar

View File

@@ -27,12 +27,12 @@ export PRG_USR="$CC_PRG_USR $PRG_USR"
# try to detect MinGW cross-compiler location
# using some default platform settings
if [ -f /etc/debian-version ]; then
if [ -f /etc/debian_version ]; then
MINGW_PREFIX=/usr
TARGET=i586-mingw32msvc
CCPREFIX="$TARGET-"
elif [ -f /etc/gentoo-release ]; then
if [ -x /opt/xmingw/bin/i686-mingw32-gcc ]; then
if [ -x /opt/xmingw/bin/i386-mingw32-gcc ]; then
MINGW_PREFIX=/opt/xmingw
TARGET=i386-mingw32msvc
else