Added /usr related code to several build files in net section
This commit is contained in:
parent
f14cfce65d
commit
7a5814b69d
5 changed files with 11 additions and 14 deletions
|
@ -21,16 +21,14 @@ prepbuilddir() {
|
||||||
|
|
||||||
build() {
|
build() {
|
||||||
./configure \
|
./configure \
|
||||||
--prefix=/usr
|
--prefix=/usr \
|
||||||
|
--sbindir=/usr/bin
|
||||||
|
|
||||||
make
|
make
|
||||||
make install DESTDIR=$pkg
|
make install ROOTSBINDIR=/usr/bin DESTDIR=$pkg
|
||||||
|
|
||||||
cp COPYING $pkgdocs/
|
cp COPYING $pkgdocs/
|
||||||
|
|
||||||
# ./configure doesn't care if you change --sbindir to /bin, so we move mount.cifs manually
|
|
||||||
mkdir -p $pkg/bin ; mv $pkg/sbin/* $pkg/bin/ ; rmdir $pkg/sbin
|
|
||||||
|
|
||||||
mkfinalpkg
|
mkfinalpkg
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -19,7 +19,8 @@ prepbuilddir() {
|
||||||
build() {
|
build() {
|
||||||
./configure \
|
./configure \
|
||||||
--prefix=/usr \
|
--prefix=/usr \
|
||||||
--sbindir=/bin \
|
--sysconfdir=/etc \
|
||||||
|
--sbindir=/usr/bin \
|
||||||
--libexecdir=/usr/lib/dhcpcd \
|
--libexecdir=/usr/lib/dhcpcd \
|
||||||
--datadir=/usr/share \
|
--datadir=/usr/share \
|
||||||
--mandir=/usr/share/man \
|
--mandir=/usr/share/man \
|
||||||
|
|
|
@ -24,10 +24,9 @@ prepbuilddir() {
|
||||||
build() {
|
build() {
|
||||||
CFLAGS+=" -D_BSD_SOURCE -DMISSING_FD_MASK -DMISSING_NFDBITS" \
|
CFLAGS+=" -D_BSD_SOURCE -DMISSING_FD_MASK -DMISSING_NFDBITS" \
|
||||||
./configure \
|
./configure \
|
||||||
--prefix= \
|
--prefix=/usr \
|
||||||
--bindir=/bin \
|
--sbindir=/usr/bin \
|
||||||
--sbindir=/bin \
|
--libexecdir=/usr/libexec/ssh \
|
||||||
--libexecdir=/lib/ssh \
|
|
||||||
--sysconfdir=/etc/ssh \
|
--sysconfdir=/etc/ssh \
|
||||||
--with-privsep-user=nobody --with-privsep-path=/var/empty --with-xauth="$pkg/bin/xauth" \
|
--with-privsep-user=nobody --with-privsep-path=/var/empty --with-xauth="$pkg/bin/xauth" \
|
||||||
--without-stackprotect --with-md5-passwords --with-mantype=man \
|
--without-stackprotect --with-md5-passwords --with-mantype=man \
|
||||||
|
|
|
@ -27,8 +27,8 @@ build() {
|
||||||
make install DESTDIR=$pkg
|
make install DESTDIR=$pkg
|
||||||
|
|
||||||
(
|
(
|
||||||
mv $pkg/share/wavemon/* $pkgdocs/
|
mv $pkg/usr/share/wavemon/* $pkgdocs/
|
||||||
rmdir $pkg/share/wavemon
|
rmdir $pkg/usr/share/wavemon
|
||||||
)
|
)
|
||||||
|
|
||||||
mkfinalpkg
|
mkfinalpkg
|
||||||
|
|
|
@ -18,9 +18,8 @@ prepbuilddir() {
|
||||||
|
|
||||||
build() {
|
build() {
|
||||||
./configure \
|
./configure \
|
||||||
--prefix=/etc \
|
--prefix=/usr \
|
||||||
--sysconfdir=/etc \
|
--sysconfdir=/etc \
|
||||||
--mandir=/share/man \
|
|
||||||
--disable-charset \
|
--disable-charset \
|
||||||
--enable-openssl
|
--enable-openssl
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue