diff options
author | Daniel Atallah <datallah@pidgin.im> | 2010-03-04 04:16:49 +0000 |
---|---|---|
committer | Daniel Atallah <datallah@pidgin.im> | 2010-03-04 04:16:49 +0000 |
commit | 5776f76faf18792197de3a05075273a03bdf95cb (patch) | |
tree | f0a7c7663d3abba2f51a5dc56411b9175f0622cf /pidgin/win32 | |
parent | 36a52cf7d6ba3a84ccd6a60a06dde06496934ab8 (diff) | |
download | pidgin-5776f76faf18792197de3a05075273a03bdf95cb.tar.gz |
mkdir -p is better than checking for directory existence
Diffstat (limited to 'pidgin/win32')
-rwxr-xr-x | pidgin/win32/nsis/generate_gtk_zip.sh | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/pidgin/win32/nsis/generate_gtk_zip.sh b/pidgin/win32/nsis/generate_gtk_zip.sh index 0c12491044..18ef87fd65 100755 --- a/pidgin/win32/nsis/generate_gtk_zip.sh +++ b/pidgin/win32/nsis/generate_gtk_zip.sh @@ -30,15 +30,12 @@ LIBPNG="http://ftp.gnome.org/pub/gnome/binaries/win32/dependencies/libpng_1.2.39 #Used by Cairo LIBPNG2="http://ftp.gnome.org/pub/gnome/binaries/win32/dependencies/libpng_1.4.0-1_win32.zip libpng 1.4.0-1" LIBTIFF="http://ftp.gnome.org/pub/gnome/binaries/win32/dependencies/libtiff_3.9.1-1_win32.zip libtiff 3.9.1-1" -#PANGO="http://ftp.gnome.org/pub/gnome/binaries/win32/pango/1.22/pango_1.22.4-1_win32.zip Pango 1.22.4-1" PANGO="http://ftp.gnome.org/pub/gnome/binaries/win32/pango/1.26/pango_1.26.2-1_win32.zip Pango 1.26.2-1" ZLIB="http://ftp.gnome.org/pub/gnome/binaries/win32/dependencies/zlib-1.2.3.zip zlib 1.2.3" ALL="ATK CAIRO EXPAT FONTCONFIG FREETYPE GETTEXT GLIB GTK LIBJPEG LIBPNG LIBPNG2 LIBTIFF PANGO ZLIB" -if [ ! -e $STAGE_DIR ]; then - mkdir $STAGE_DIR -fi +mkdir -p $STAGE_DIR cd $STAGE_DIR rm -rf $INSTALL_DIR |