diff options
author | Pierre Schmitz <pierre@archlinux.de> | 2010-07-01 16:51:43 +0200 |
---|---|---|
committer | Pierre Schmitz <pierre@archlinux.de> | 2010-07-01 16:51:43 +0200 |
commit | e656ec7052d90a2501f31ed350137e81ea3136ae (patch) | |
tree | b7b28923a56897365893eb33ebcfe667366c76f4 | |
parent | dcc7b6728d3b671e26638124f962ba8de0b9dbcd (diff) | |
download | devtools-e656ec7052d90a2501f31ed350137e81ea3136ae.tar.gz devtools-e656ec7052d90a2501f31ed350137e81ea3136ae.tar.xz |
Check if ~/.makepkg.conf exists
Fixes FS#20041
-rwxr-xr-x | makechrootpkg | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/makechrootpkg b/makechrootpkg index 79dc517..4ff69b0 100755 --- a/makechrootpkg +++ b/makechrootpkg @@ -133,9 +133,11 @@ if [ "$REPACK" != "1" ]; then fi # Get SRC/PKGDEST from makepkg.conf -SRCDEST=$(grep '^SRCDEST=' ~/.makepkg.conf | cut -d= -f2) +if [ -f ~/.makepkg.conf ]; then + SRCDEST=$(grep '^SRCDEST=' ~/.makepkg.conf | cut -d= -f2) + PKGDEST=$(grep '^PKGDEST=' ~/.makepkg.conf | cut -d= -f2) +fi [ -z ${SRCDEST} ] && SRCDEST=$(grep '^SRCDEST=' /etc/makepkg.conf | cut -d= -f2) -PKGDEST=$(grep '^PKGDEST=' ~/.makepkg.conf | cut -d= -f2) [ -z ${PKGDEST} ] && PKGDEST=$(grep '^PKGDEST=' /etc/makepkg.conf | cut -d= -f2) [ -d "$copydir/pkgdest" ] || mkdir "$copydir/pkgdest" |