[arch-commits] CVS update of arch/build/network/dhclient (PKGBUILD)
Eric Belanger
eric at archlinux.org
Sat Jul 7 17:38:18 UTC 2007
Date: Saturday, July 7, 2007 @ 13:38:18
Author: eric
Path: /home/cvs-arch/arch/build/network/dhclient
Modified: PKGBUILD (1.5 -> 1.6)
upgpkg: dhclient 3.0.6-1
Fixed order of the make lines
----------+
PKGBUILD | 13 ++++++-------
1 file changed, 6 insertions(+), 7 deletions(-)
Index: arch/build/network/dhclient/PKGBUILD
diff -u arch/build/network/dhclient/PKGBUILD:1.5 arch/build/network/dhclient/PKGBUILD:1.6
--- arch/build/network/dhclient/PKGBUILD:1.5 Sat Jul 7 05:00:35 2007
+++ arch/build/network/dhclient/PKGBUILD Sat Jul 7 13:38:18 2007
@@ -1,4 +1,4 @@
-#$Id: PKGBUILD,v 1.5 2007/07/07 09:00:35 jgc Exp $
+#$Id: PKGBUILD,v 1.6 2007/07/07 17:38:18 eric Exp $
# Maintainer: Jan de Groot <jgc at archlinux.org>
# Contributor: Mirko Messer <mirk at chao.ch>
pkgname=dhclient
@@ -12,17 +12,16 @@
options=('!makeflags')
source=(ftp://ftp.isc.org/isc/dhcp/dhcp-${pkgver}.tar.gz \
arch-nm.patch)
-md5sums=('724bad21ad8b638abadd5fcc07df1a0f'
- 'c3ad862567cb63ae6589a0754aa685b3')
+md5sums=('724bad21ad8b638abadd5fcc07df1a0f' 'c3ad862567cb63ae6589a0754aa685b3')
build() {
cd ${startdir}/src/dhcp-${pkgver}
patch -Np1 -i ${startdir}/src/arch-nm.patch || return 1
./configure
- cd work*/minires && make
- cd ../omapip && make
- cd ../dst && make
- cd ../common && make
+ cd work*/minires && make || return 1
+ cd ../dst && make || return 1
+ cd ../omapip && make || return 1
+ cd ../common && make || return 1
cd ../client
make DESTDIR=${startdir}/pkg install
mkdir -p ${startdir}/pkg/usr/share/licenses/${pkgname}
More information about the arch-commits
mailing list