CVS java-package/lib

Jeroen van Wolffelaar jeroen@haydn.debian.org
Wed Jan 26 08:48:09 2005


Update of /cvsroot/pkg-java/java-package/lib
In directory haydn:/tmp/cvs-serv21713/lib

Modified Files:
	common.sh 
Log Message:
* Now really fix free diskspace detection for devfs (#289006)


--- /cvsroot/pkg-java/java-package/lib/common.sh	2005/01/25 00:04:02	1.5
+++ /cvsroot/pkg-java/java-package/lib/common.sh	2005/01/26 15:47:05	1.6
@@ -31,7 +31,7 @@
 
 	# With long device names (devfsd) the number we're interested in might be
 	# shifted one entry to the left (#289006)
-	if [ "$free" -ne "${free%\%}" ]; then
+	if [ "$free" != "${free%\%}" ]; then
 		free="$free2"
 	fi
     if [ "$free" -ge "$size" ]; then