1
0
mirror of https://github.com/moparisthebest/pacman synced 2024-08-13 17:03:46 -04:00

PKGBUILD-example.txt: Remove superfluous "|| return 1".

Signed-off-by: Dan McGee <dan@archlinux.org>
This commit is contained in:
Lukas Fleischer 2010-09-15 02:49:19 +02:00 committed by Dan McGee
parent e29dde9157
commit 79541193f7

View File

@ -15,6 +15,6 @@ md5sums=('ee5ae84d115f051d87fcaaef3b4ae782')
build() { build() {
cd $srcdir/$pkgname-$pkgver cd $srcdir/$pkgname-$pkgver
./configure --prefix=/usr ./configure --prefix=/usr
make || return 1 make
make prefix=$pkgdir/usr install make prefix=$pkgdir/usr install
} }