diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2006-05-27 17:02:22 +0200 |
---|---|---|
committer | Jelmer Vernooij <jelmer@samba.org> | 2006-05-27 17:02:22 +0200 |
commit | 875ad4201402b1a8f80ba22a6cdcdb152c6e5510 (patch) | |
tree | 50bcda08c13daef476959c8877bf6ae12772dcfb | |
parent | fcc2da97bcfa5e0d704179fae9c4ed59cbaf79c5 (diff) |
Install glib, gettext and iconv in temporary directory
-rwxr-xr-x | utils/cross-compile.win32 | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/utils/cross-compile.win32 b/utils/cross-compile.win32 index d4f581a0..c90ebc1b 100755 --- a/utils/cross-compile.win32 +++ b/utils/cross-compile.win32 @@ -12,8 +12,7 @@ wget -c $GTK_SITE/glib-dev-$GLIB_VERSION.zip wget -c $GTK_SITE/dependencies/libiconv-$LIBICONV_VERSION.bin.woe32.zip wget -c $GTK_SITE/dependencies/gettext-dev-$GETTEXT_VERSION.zip -DEPSDIR=`pwd`/win32 -mkdir $DEPSDIR +DEPSDIR=`mktemp -d` unzip -d $DEPSDIR -o libiconv-$LIBICONV_VERSION.bin.woe32.zip unzip -d $DEPSDIR -o glib-dev-$GLIB_VERSION.zip |