mirror of
https://github.com/pygos/build.git
synced 2024-11-22 11:09:46 +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() {
|
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
|
--enable-no-install-program=kill,uptime,dir,vdir,chcon,pinky,runcon
|
||||||
|
|
||||||
make -j $NUMJOBS
|
make -j $NUMJOBS
|
||||||
|
|
|
@ -16,7 +16,8 @@ build() {
|
||||||
cp -r $SOURCE/* $PKGBUILDDIR
|
cp -r $SOURCE/* $PKGBUILDDIR
|
||||||
|
|
||||||
./configure --prefix="" --host="$TARGET" --sbindir=/bin \
|
./configure --prefix="" --host="$TARGET" --sbindir=/bin \
|
||||||
--datadir=/share --disable-static
|
--datadir=/share --libexecdir=/lib/libexec \
|
||||||
|
--disable-static
|
||||||
|
|
||||||
make -j $NUMJOBS
|
make -j $NUMJOBS
|
||||||
}
|
}
|
||||||
|
|
|
@ -10,7 +10,7 @@ prepare() {
|
||||||
}
|
}
|
||||||
|
|
||||||
build() {
|
build() {
|
||||||
$1/configure --prefix="" --host="$TARGET" \
|
$1/configure --prefix="" --host="$TARGET" --libexecdir=/lib/libexec \
|
||||||
--localstatedir=/var/lib/locate
|
--localstatedir=/var/lib/locate
|
||||||
|
|
||||||
make -j $NUMJOBS
|
make -j $NUMJOBS
|
||||||
|
|
|
@ -10,7 +10,7 @@ prepare() {
|
||||||
}
|
}
|
||||||
|
|
||||||
build() {
|
build() {
|
||||||
$1/configure --prefix="" --host="$TARGET"
|
$1/configure --prefix="" --host="$TARGET" --libexecdir="/lib/libexec"
|
||||||
|
|
||||||
make -j $NUMJOBS
|
make -j $NUMJOBS
|
||||||
}
|
}
|
||||||
|
|
|
@ -13,7 +13,8 @@ build() {
|
||||||
local SOURCE="$1"
|
local SOURCE="$1"
|
||||||
local DEPLOY="$2"
|
local DEPLOY="$2"
|
||||||
|
|
||||||
$SOURCE/configure --prefix="" --host="$TARGET" --sbindir=/bin
|
$SOURCE/configure --prefix="" --host="$TARGET" --sbindir=/bin \
|
||||||
|
--libexecdir=/lib/libexec
|
||||||
|
|
||||||
make -j $NUMJOBS
|
make -j $NUMJOBS
|
||||||
}
|
}
|
||||||
|
|
|
@ -11,6 +11,7 @@ prepare() {
|
||||||
|
|
||||||
build() {
|
build() {
|
||||||
$1/configure --prefix="" --host="$TARGET" --sbindir=/bin \
|
$1/configure --prefix="" --host="$TARGET" --sbindir=/bin \
|
||||||
|
--libexecdir=/lib/libexec \
|
||||||
--with-pie --without-pam --without-stackprotect \
|
--with-pie --without-pam --without-stackprotect \
|
||||||
--without-selinux --disable-strip \
|
--without-selinux --disable-strip \
|
||||||
--with-sandbox=seccomp_filter \
|
--with-sandbox=seccomp_filter \
|
||||||
|
|
|
@ -10,7 +10,7 @@ prepare() {
|
||||||
}
|
}
|
||||||
|
|
||||||
build() {
|
build() {
|
||||||
$1/configure --prefix="" --host="$TARGET"
|
$1/configure --prefix="" --host="$TARGET" --libexecdir=/lib/libexec
|
||||||
|
|
||||||
make -j $NUMJOBS
|
make -j $NUMJOBS
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue