summaryrefslogtreecommitdiffstats
path: root/scripts/makepkg
diff options
context:
space:
mode:
authorAaron Griffin <aaron@archlinux.org>2006-12-19 08:39:44 +0100
committerAaron Griffin <aaron@archlinux.org>2006-12-19 08:39:44 +0100
commitef8fd03c3310d3733a8b0b3cb8ccafbf8a8ff1ee (patch)
tree0ae9902e0405dec5a4af29464989b61d62df2619 /scripts/makepkg
parentff23064fa26f8aef2af0e858498cb1c8afee08d3 (diff)
downloadpacman-ef8fd03c3310d3733a8b0b3cb8ccafbf8a8ff1ee.tar.gz
pacman-ef8fd03c3310d3733a8b0b3cb8ccafbf8a8ff1ee.tar.xz
Makefile adjustments for installation rules:
added all the newer scripts/ added pacman.d and abs sysconf subdirs Minor makepkg revert for previous change to 'errexit' shell option
Diffstat (limited to 'scripts/makepkg')
-rwxr-xr-xscripts/makepkg8
1 files changed, 4 insertions, 4 deletions
diff --git a/scripts/makepkg b/scripts/makepkg
index aa53990a..cec871e7 100755
--- a/scripts/makepkg
+++ b/scripts/makepkg
@@ -736,6 +736,10 @@ fi
# build
msg "Starting build()..."
+#check for "exit on syntax error" shell option
+echo $SHELLOPTS | grep errexit 2>&1 >/dev/null
+set_e=$?
+
if [ "x$LOGGING" = "1" ]; then
BUILDLOG="${startdir}/${pkgname}-${pkgver}-${pkgrel}-${CARCH}.log"
if [ -f "$BUILDLOG" ]; then
@@ -750,10 +754,6 @@ if [ "x$LOGGING" = "1" ]; then
mv "$BUILDLOG" "$BUILDLOG.$i"
fi
- #check for "exit on syntax error" shell option
- echo $SHELLOPTS | grep errexit 2>&1 >/dev/null
- set_e=$?
-
#use 'errexit' to bail on syntax error
[ $set_e -eq 1 ] && set -e
build 2>&1 | tee "$BUILDLOG"