r18142 - gnucash/trunk/packaging/win32 - Fix bug 586419 – Install aborts unpacking SVN .exe package
Phil Longstaff
plongstaff at code.gnucash.org
Sat Jun 20 20:12:29 EDT 2009
Author: plongstaff
Date: 2009-06-20 20:12:29 -0400 (Sat, 20 Jun 2009)
New Revision: 18142
Trac: http://svn.gnucash.org/trac/changeset/18142
Modified:
gnucash/trunk/packaging/win32/install.sh
Log:
Fix bug 586419 – Install aborts unpacking SVN .exe package
wget_unpacked doesn't handle .exe files.
Patch by Gary Bartlett
Modified: gnucash/trunk/packaging/win32/install.sh
===================================================================
--- gnucash/trunk/packaging/win32/install.sh 2009-06-20 23:44:10 UTC (rev 18141)
+++ gnucash/trunk/packaging/win32/install.sh 2009-06-21 00:12:29 UTC (rev 18142)
@@ -390,10 +390,8 @@
then
echo "subversion already installed. skipping."
else
- wget_unpacked $SVN_URL $DOWNLOAD_DIR $TMP_DIR
- assert_one_dir $TMP_UDIR/svn-win32-*
- mkdir -p $_SVN_UDIR
- mv $TMP_UDIR/svn-win32-*/* $_SVN_UDIR
+ smart_wget $SVN_URL $DOWNLOAD_DIR
+ $LAST_FILE //SP- //SILENT //DIR="$SVN_DIR"
quiet svn --version || die "svn not installed correctly"
fi
}
More information about the gnucash-changes
mailing list