# HG changeset patch # User Christopher Rogers # Date 1302923148 0 # Node ID 24fb30f4e061711d17d2ad6c39fdd23a815fd2d7 # Parent 76eef2a4bc5490af28243d4b8f6748644ad12c24 Fixed PACKAGE_FILE variable. It equaled PWD/PACKAGE instead of PACKAGE. This should fixed tazpkg to work with pcmanfm again. Fixed issue20 on bugs.slitaz.org. diff -r 76eef2a4bc54 -r 24fb30f4e061 tazpkg --- a/tazpkg Thu Apr 14 22:10:49 2011 +0200 +++ b/tazpkg Sat Apr 16 03:05:48 2011 +0000 @@ -42,7 +42,7 @@ # and actions. COMMAND=$1 PACKAGE=${2%/} -PACKAGE_FILE="$PWD/$PACKAGE" +PACKAGE_FILE="$PACKAGE" if [ -f "$PACKAGE" ]; then # Set pkg basename for install, extract PACKAGE=$(basename ${PACKAGE%.tazpkg} 2>/dev/null)