Sync package name checking for PKGDEST support

Not many changes here, most were already existing
checkpkg should fully support PKGDEST

Signed-off-by: Aaron Griffin <aaronmgriffin@gmail.com>
This commit is contained in:
Aaron Griffin 2007-10-01 23:08:29 -05:00
parent da6795515b
commit c1efcc1204
1 changed files with 2 additions and 1 deletions

View File

@ -19,12 +19,13 @@ oldstylepkgfile=${pkgname}-${pkgver}-${pkgrel}.pkg.tar.gz
if [ ! -f $pkgfile ]; then
if [ -f $PKGDEST/$pkgfile ]; then
pkgfile=$PKGDEST/$pkgfile
oldstylepkgfile=$PKGDEST/$oldstylepkgfile
elif [ -f $oldstylepkgfile ]; then
pkgfile=$oldstylepkgfile
elif [ -f $PKGDEST/$oldstylepkgfile ]; then
pkgfile=$PKGDEST/$oldstylepkgfile
else
echo "You must have a built package to check."
echo "File $pkgfile doesn't exist"
exit 1
fi
fi