diff options
author | James Meyer <james.meyer@operamail.com> | 2014-10-03 21:59:49 (GMT) |
---|---|---|
committer | James Meyer <james.meyer@operamail.com> | 2014-10-03 21:59:54 (GMT) |
commit | 3cdab7d28cc3c8e66074c167c7ac6c7625ba49d8 (patch) | |
tree | 63d1686ad65177ced386fc91e62f5eb55af6f45b | |
parent | 068c62ad9519b2001c068e2cbd76a277ab8f04b1 (diff) | |
download | linhes_pkgbuild-3cdab7d28cc3c8e66074c167c7ac6c7625ba49d8.zip linhes_pkgbuild-3cdab7d28cc3c8e66074c167c7ac6c7625ba49d8.tar.gz linhes_pkgbuild-3cdab7d28cc3c8e66074c167c7ac6c7625ba49d8.tar.bz2 |
dhcpcd: moved lib dir to /usr/lib because /lib conflicts with the filesystem pkg.
-rw-r--r-- | abs/core/dhcpcd/PKGBUILD | 7 | ||||
-rw-r--r-- | abs/core/dhcpcd/__changelog | 2 |
2 files changed, 7 insertions, 2 deletions
diff --git a/abs/core/dhcpcd/PKGBUILD b/abs/core/dhcpcd/PKGBUILD index 82a42e8..34525d8 100644 --- a/abs/core/dhcpcd/PKGBUILD +++ b/abs/core/dhcpcd/PKGBUILD @@ -5,7 +5,7 @@ pkgname=dhcpcd pkgver=6.1.0 -pkgrel=1 +pkgrel=2 pkgdesc="RFC2131 compliant DHCP client daemon" url="http://roy.marples.name/projects/dhcpcd/" arch=('i686' 'x86_64') @@ -24,12 +24,15 @@ build() { cd ${srcdir}/${pkgname}-${pkgver} # configure variables - ./configure \ + ./configure \ --sbindir=/usr/bin \ --libexecdir=/usr/lib/dhcpcd \ + --libdir=/usr/lib \ --dbdir=/var/lib/dhcpcd \ --rundir=/run + + # Build make } diff --git a/abs/core/dhcpcd/__changelog b/abs/core/dhcpcd/__changelog index 3f0d400..0004c0c 100644 --- a/abs/core/dhcpcd/__changelog +++ b/abs/core/dhcpcd/__changelog @@ -1,2 +1,4 @@ Added to dhcpcd.conf.d DHCPCD_ARGS="-t 30 -h $HOSTNAME" + +Added libdir=/usr/lib because /lib conflicts with filesystem pkg |