diff options
author | Joshua I. Haase H. (xihh) <hahj87@gmail.com> | 2012-06-04 22:35:44 -0500 |
---|---|---|
committer | Joshua I. Haase H. (xihh) <hahj87@gmail.com> | 2012-06-04 22:35:44 -0500 |
commit | f370b80d4df29991c523ed8af5dc2cb00e611b6e (patch) | |
tree | bd7ef3a4c9bc500178068399f1b4a81cd407c0ad /fullpkg-find | |
parent | ff089d0a64dbf280c73e2ad6b11f82d015e229bd (diff) |
fix https://labs.parabola.nu/issues/17
fullpkg-find now sources /etc/makepkg.conf
Diffstat (limited to 'fullpkg-find')
-rwxr-xr-x | fullpkg-find | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/fullpkg-find b/fullpkg-find index 2f3aaaa..205ef71 100755 --- a/fullpkg-find +++ b/fullpkg-find @@ -64,7 +64,6 @@ copy_files() { # Checks ABSROOT and look for target pkg deps. Adds them if not built or outdated. find_deps() { # Check this level - source /etc/makepkg.conf source PKGBUILD local repo="${repo:-$(guess_repo)}" @@ -140,6 +139,7 @@ find_deps() { } source /etc/libretools.conf +source /etc/makepkg.conf if [ -e $XDG_CONFIG_HOME/libretools/libretools.conf ]; then source $XDG_CONFIG_HOME/libretools/libretools.conf @@ -215,7 +215,6 @@ if [ "$LEVEL" -eq 0 ]; then msg "Checking dependencies" fi -# Find the dependencies on the ABS itself find_deps exit 0 |