mirror of
https://github.com/pygos/build.git
synced 2024-11-05 03:27:10 +01:00
Cleanup: move libexec directory into /lib
Signed-off-by: David Oberhollenzer <david.oberhollenzer@tele2.at>
This commit is contained in:
parent
66be5567f9
commit
9d75cc8400
7 changed files with 9 additions and 6 deletions
|
@ -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
|
||||
|
|
|
@ -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
|
||||
}
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -10,7 +10,7 @@ prepare() {
|
|||
}
|
||||
|
||||
build() {
|
||||
$1/configure --prefix="" --host="$TARGET"
|
||||
$1/configure --prefix="" --host="$TARGET" --libexecdir="/lib/libexec"
|
||||
|
||||
make -j $NUMJOBS
|
||||
}
|
||||
|
|
|
@ -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
|
||||
}
|
||||
|
|
|
@ -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 \
|
||||
|
|
|
@ -10,7 +10,7 @@ prepare() {
|
|||
}
|
||||
|
||||
build() {
|
||||
$1/configure --prefix="" --host="$TARGET"
|
||||
$1/configure --prefix="" --host="$TARGET" --libexecdir=/lib/libexec
|
||||
|
||||
make -j $NUMJOBS
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue