From b6483b3cb487bd37f9082d3428b5a0d655127626 Mon Sep 17 00:00:00 2001 From: Dan McGee Date: Sat, 3 Feb 2007 05:21:55 +0000 Subject: Fix problem with PKGDEST variable not being used correctly. --- scripts/makepkg | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'scripts/makepkg') diff --git a/scripts/makepkg b/scripts/makepkg index 4f021876..ec1b2267 100755 --- a/scripts/makepkg +++ b/scripts/makepkg @@ -314,9 +314,8 @@ usage() { ARGLIST=$@ #preserve environment variables -PKGDEST=${PKGDEST:-$startdir} #default to $startdir if undefined _PKGDEST=${PKGDEST} -_SRCDEST=$SRCDEST +_SRCDEST=${SRCDEST} #Source makepkg.conf; fail if it is not found if [ -f /etc/makepkg.conf ]; then @@ -333,7 +332,9 @@ fi # override settings with an environment variable for batch processing PKGDEST=${_PKGDEST:-$PKGDEST} +PKGDEST=${PKGDEST:-$startdir} #default to $startdir if undefined SRCDEST=${_SRCDEST:-$SRCDEST} +SRCDEST=${SRCDEST:-$startdir} #default to $startdir if undefined while [ "$#" -ne "0" ]; do case $1 in -- cgit v1.2.3