summaryrefslogtreecommitdiffstats
path: root/core/fakeroot
diff options
context:
space:
mode:
authorNatanael Copa <ncopa@alpinelinux.org>2009-01-15 20:41:51 +0000
committerNatanael Copa <ncopa@alpinelinux.org>2009-01-15 20:41:51 +0000
commit49b3ffd7a4cb39d0299bad984094724d0a358e99 (patch)
tree6544b7554418b6181d3586bdd320a1b6c8b78809 /core/fakeroot
parentaf221119219f7320555624db1c698bca027c8c45 (diff)
downloadaports-49b3ffd7a4cb39d0299bad984094724d0a358e99.tar.bz2
aports-49b3ffd7a4cb39d0299bad984094724d0a358e99.tar.xz
core/fakeroot: force use of /bin/sh rather than /bin/bash
The configure detected bash if installed and used /bin/bash rather than /bin/sh.
Diffstat (limited to 'core/fakeroot')
-rw-r--r--core/fakeroot/APKBUILD4
1 files changed, 2 insertions, 2 deletions
diff --git a/core/fakeroot/APKBUILD b/core/fakeroot/APKBUILD
index 9fcb4d2c..141a207a 100644
--- a/core/fakeroot/APKBUILD
+++ b/core/fakeroot/APKBUILD
@@ -1,6 +1,6 @@
pkgname=fakeroot
pkgver=1.12.1
-pkgrel=1
+pkgrel=2
pkgdesc="Gives a fake root environment, useful for building packages as a non-privileged user"
license='GPL'
url="http://packages.debian.org/fakeroot"
@@ -12,7 +12,7 @@ source="http://ftp.debian.org/debian/pool/main/f/$pkgname/${pkgname}_${pkgver}.t
build() {
cd $startdir/src/$pkgname-$pkgver
patch -p1 < ../busybox-compat.patch
- ./configure --prefix=/usr #--libdir=/usr/lib/libfakeroot
+ CONFIG_SHELL=/bin/sh ./configure --prefix=/usr
make || return 1
make DESTDIR=$startdir/pkg install
}