tazpkg rev 481

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.
author Christopher Rogers <slaxemulator@gmail.com>
date Sat Apr 16 03:05:48 2011 +0000 (2011-04-16)
parents 76eef2a4bc54
children 41cafbbb2783
files tazpkg
line diff
     1.1 --- a/tazpkg	Thu Apr 14 22:10:49 2011 +0200
     1.2 +++ b/tazpkg	Sat Apr 16 03:05:48 2011 +0000
     1.3 @@ -42,7 +42,7 @@
     1.4  # and actions.
     1.5  COMMAND=$1
     1.6  PACKAGE=${2%/}
     1.7 -PACKAGE_FILE="$PWD/$PACKAGE"
     1.8 +PACKAGE_FILE="$PACKAGE"
     1.9  if [ -f "$PACKAGE" ]; then
    1.10  	# Set pkg basename for install, extract
    1.11  	PACKAGE=$(basename ${PACKAGE%.tazpkg} 2>/dev/null)