summaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authorEvangelos Foutras <evangelos@foutrelis.com>2016-02-17 08:11:38 +0100
committerAllan McRae <allan@archlinux.org>2016-02-23 03:50:04 +0100
commitc034a3322b2a53fce51ffce144e36361892abeac (patch)
tree0d14613dbb2f685e9cf11f8b019886e466f902cd /scripts
parenta724235b6127f9655708614d1e44f9b5c661a506 (diff)
downloadpacman-c034a3322b2a53fce51ffce144e36361892abeac.tar.gz
pacman-c034a3322b2a53fce51ffce144e36361892abeac.tar.xz
makepkg: do not run prepare() with --noextract
This is partial revert of 8454daa7feef (makepkg: run pkgver() and prepare() with --noextract). Reasoning for the reversion (copied from FS#43498): Running prepare() when --noextract is used no longer allows running 'makepkg -o && makepkg -e' with any PKGBUILD that applies patches in prepare(). [1] Sure there's --noprepare which restores the old behavior, but that's a lot of extra typing for what I believe is a much more common use of --noextract. For OP's use case of doing git bisects, you can specify the commit in the source array and thus skip --noextract since makepkg will checkout the correct commit each time. [1] I often extract the sources using 'makepkg -o', manually edit some source files, and then use 'makepkg -e' to package it (while possibly repeating the edit/package steps). Signed-off-by: Allan McRae <allan@archlinux.org>
Diffstat (limited to 'scripts')
-rw-r--r--scripts/makepkg.sh.in6
1 files changed, 3 insertions, 3 deletions
diff --git a/scripts/makepkg.sh.in b/scripts/makepkg.sh.in
index b888b8da..8d20e25d 100644
--- a/scripts/makepkg.sh.in
+++ b/scripts/makepkg.sh.in
@@ -2214,6 +2214,9 @@ if (( !REPKG )); then
fi
extract_sources
+ if (( PREPAREFUNC )); then
+ run_prepare
+ fi
fi
if (( PKGVERFUNC )); then
@@ -2221,9 +2224,6 @@ if (( !REPKG )); then
basever=$(get_full_version)
check_build_status
fi
- if (( PREPAREFUNC )); then
- run_prepare
- fi
fi
if (( NOBUILD )); then