summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAaron Griffin <aaron@archlinux.org>2007-02-24 03:11:52 +0100
committerAaron Griffin <aaron@archlinux.org>2007-02-24 03:11:52 +0100
commit8626e5dd474b61827a6cb5b1f02f92f75c96a6ac (patch)
tree836adfee387b486e5d91349a782d3bf9930d5108
parent0aae368a79c973ed141e9e03f45f39841caa7dca (diff)
downloadpacman-8626e5dd474b61827a6cb5b1f02f92f75c96a6ac.tar.gz
pacman-8626e5dd474b61827a6cb5b1f02f92f75c96a6ac.tar.xz
else if --> elif (thanks to yankees26 for finding this)
-rwxr-xr-xscripts/makepkg2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/makepkg b/scripts/makepkg
index bb571408..d9e5919d 100755
--- a/scripts/makepkg
+++ b/scripts/makepkg
@@ -819,7 +819,7 @@ else
# use distcc if it is requested (check buildenv and PKGBUILD opts)
if [ "$(check_buildenv distcc)" = "y" -a "$(check_option distcc)" != "n" ]; then
[ -d /usr/lib/distcc/bin ] && export PATH=/usr/lib/distcc/bin:$PATH
- else if [ "$(check_option distcc)" = "n" ]; then
+ elif [ "$(check_option distcc)" = "n" ]; then
# if it is not wanted, clear the makeflags too
export MAKEFLAGS=""
fi