summaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorLukas Fleischer <archlinux@cryptocrack.de>2010-09-15 02:49:19 +0200
committerDan McGee <dan@archlinux.org>2010-09-15 14:20:20 +0200
commit79541193f736c3b5a5d1f9a4b902608c8faaad37 (patch)
tree3db331174d7f0741d719f5062e9db0c122ecfcd9 /doc
parente29dde9157cadd0ce8bafb22e5157d853faf005a (diff)
downloadpacman-79541193f736c3b5a5d1f9a4b902608c8faaad37.tar.gz
pacman-79541193f736c3b5a5d1f9a4b902608c8faaad37.tar.xz
PKGBUILD-example.txt: Remove superfluous "|| return 1".
Signed-off-by: Dan McGee <dan@archlinux.org>
Diffstat (limited to 'doc')
-rw-r--r--doc/PKGBUILD-example.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/PKGBUILD-example.txt b/doc/PKGBUILD-example.txt
index 7245228a..99fd8c24 100644
--- a/doc/PKGBUILD-example.txt
+++ b/doc/PKGBUILD-example.txt
@@ -15,6 +15,6 @@ md5sums=('ee5ae84d115f051d87fcaaef3b4ae782')
build() {
cd $srcdir/$pkgname-$pkgver
./configure --prefix=/usr
- make || return 1
+ make
make prefix=$pkgdir/usr install
}