[SCM] gpsprune branch, master, updated. debian/12.1-1-2-gc096826

David Paleino dapal at debian.org
Tue Apr 12 08:58:14 UTC 2011


The following commit has been merged in the master branch:
commit 84854e84b6ec733cabcc92e2bea4338eef97293c
Author: David Paleino <dapal at debian.org>
Date:   Tue Apr 12 10:40:07 2011 +0200

    Fix passing filenames with spaces, patch from Ubuntu (Closes: #598977, LP: #735412)

diff --git a/debian/changelog b/debian/changelog
index 13aa58b..648db07 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,10 @@
+gpsprune (12.1-2) UNRELEASED; urgency=low
+
+  * Fix passing filenames with spaces, patch from Ubuntu
+    (Closes: #598977, LP: #735412)
+
+ -- David Paleino <dapal at debian.org>  Tue, 12 Apr 2011 10:38:47 +0200
+
 gpsprune (12.1-1) unstable; urgency=low
 
   * New upstream version
diff --git a/debian/scripts/gpsprune b/debian/scripts/gpsprune
index a842819..c5ab6cd 100644
--- a/debian/scripts/gpsprune
+++ b/debian/scripts/gpsprune
@@ -7,10 +7,10 @@ proxyport=$(echo $http_proxy | sed 's?http://[^:]\+:\([0-9]\+\)?\1?')
 
 if [ -z $proxyport ] ; then
     if [ -z $proxyhost ] ; then
-        java $JAVA_OPTS -jar $PRUNEJAR $@
+        java $JAVA_OPTS -jar $PRUNEJAR "$@"
     else
-	java $JAVA_OPTS -Dhttp.proxyHost=$proxyhost -jar $PRUNEJAR $@
+        java $JAVA_OPTS -Dhttp.proxyHost=$proxyhost -jar $PRUNEJAR "$@"
     fi
 else
-    java $JAVA_OPTS -Dhttp.proxyHost=$proxyhost -Dhttp.proxyPort=$proxyport -jar $PRUNEJAR $@
+    java $JAVA_OPTS -Dhttp.proxyHost=$proxyhost -Dhttp.proxyPort=$proxyport -jar $PRUNEJAR "$@"
 fi

-- 
Tool to visualize, edit, convert and prune GPS data



More information about the Pkg-grass-devel mailing list