diff options
author | Dave Reisner <dreisner@archlinux.org> | 2013-08-11 18:09:25 -0400 |
---|---|---|
committer | Pierre Schmitz <pierre@archlinux.de> | 2013-08-18 18:17:31 +0200 |
commit | 914ebe3a74287a7972fd4ba33ce3daa77ff96fc8 (patch) | |
tree | 96ddad4f10ceda217532dc529f825a117a618e18 /checkpkg.in | |
parent | 7267664ed86d17c63b12f05d10e8ffb33aab4938 (diff) | |
download | devtools32-914ebe3a74287a7972fd4ba33ce3daa77ff96fc8.tar.xz |
ensure that PKGBUILDs aren't sourced via PATH
Fixes FS#36378.
Signed-off-by: Dave Reisner <dreisner@archlinux.org>
Signed-off-by: Pierre Schmitz <pierre@archlinux.de>
Diffstat (limited to 'checkpkg.in')
-rw-r--r-- | checkpkg.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/checkpkg.in b/checkpkg.in index 8e0f574..54149db 100644 --- a/checkpkg.in +++ b/checkpkg.in @@ -18,7 +18,7 @@ if [[ ! -f PKGBUILD ]]; then die 'This must be run in the directory of a built package.' fi -. PKGBUILD +. ./PKGBUILD if [[ $arch == 'any' ]]; then CARCH='any' fi |