fix a path error when release building

This commit is contained in:
Rudolf Polzer 2010-09-16 10:48:26 +02:00
parent ad9d4b2c72
commit cda347b55a

4
all
View File

@ -278,8 +278,8 @@ mkzip()
shift
ziplist=`mktemp`
find "$@" -xtype f \( -executable -or -type l \) -print > "$ziplist"
7za a -tzip -mx=9 -x@"$ziplist" "$archive" || true
zip -9y -@<"$ziplist" "$archive" || true
7za a -tzip -mx=9 -x@"$ziplist" "$archive" "$@" || true
zip -9y -@<"$ziplist" "$archive" || true
rm -f "$ziplist"
}