1
0
Fork 0
mirror of https://github.com/pygos/build.git synced 2024-05-17 11:06:13 +02:00

Cleanup: move libexec directory into /lib

Signed-off-by: David Oberhollenzer <david.oberhollenzer@tele2.at>
This commit is contained in:
David Oberhollenzer 2018-04-06 01:03:29 +02:00
parent 66be5567f9
commit 9d75cc8400
7 changed files with 9 additions and 6 deletions

View file

@ -10,7 +10,7 @@ prepare() {
}
build() {
$1/configure --prefix="" --host="$TARGET" \
$1/configure --prefix="" --host="$TARGET" --libexecdir=/lib/libexec \
--enable-no-install-program=kill,uptime,dir,vdir,chcon,pinky,runcon
make -j $NUMJOBS

View file

@ -16,7 +16,8 @@ build() {
cp -r $SOURCE/* $PKGBUILDDIR
./configure --prefix="" --host="$TARGET" --sbindir=/bin \
--datadir=/share --disable-static
--datadir=/share --libexecdir=/lib/libexec \
--disable-static
make -j $NUMJOBS
}

View file

@ -10,7 +10,7 @@ prepare() {
}
build() {
$1/configure --prefix="" --host="$TARGET" \
$1/configure --prefix="" --host="$TARGET" --libexecdir=/lib/libexec \
--localstatedir=/var/lib/locate
make -j $NUMJOBS

View file

@ -10,7 +10,7 @@ prepare() {
}
build() {
$1/configure --prefix="" --host="$TARGET"
$1/configure --prefix="" --host="$TARGET" --libexecdir="/lib/libexec"
make -j $NUMJOBS
}

View file

@ -13,7 +13,8 @@ build() {
local SOURCE="$1"
local DEPLOY="$2"
$SOURCE/configure --prefix="" --host="$TARGET" --sbindir=/bin
$SOURCE/configure --prefix="" --host="$TARGET" --sbindir=/bin \
--libexecdir=/lib/libexec
make -j $NUMJOBS
}

View file

@ -11,6 +11,7 @@ prepare() {
build() {
$1/configure --prefix="" --host="$TARGET" --sbindir=/bin \
--libexecdir=/lib/libexec \
--with-pie --without-pam --without-stackprotect \
--without-selinux --disable-strip \
--with-sandbox=seccomp_filter \

View file

@ -10,7 +10,7 @@ prepare() {
}
build() {
$1/configure --prefix="" --host="$TARGET"
$1/configure --prefix="" --host="$TARGET" --libexecdir=/lib/libexec
make -j $NUMJOBS
}