enforce proper usage of --prefix
This commit is contained in:
parent
7a862170e7
commit
19e01873b0
5 changed files with 6 additions and 6 deletions
|
@ -3,7 +3,7 @@ prepare:
|
|||
tar -xf binutils.tar.gz
|
||||
cd binutils
|
||||
make:
|
||||
@../configure --prefix=${PREFIX}/usr \
|
||||
@../configure --prefix=/usr \
|
||||
--enable-gold \
|
||||
--enable-ld=default \
|
||||
--enable-plugins \
|
||||
|
|
|
@ -3,7 +3,7 @@ prepare:
|
|||
tar -xf bison.tar.gz
|
||||
cd bison
|
||||
make:
|
||||
@./configure --prefix=${PREFIX}/usr
|
||||
@./configure --prefix=/usr
|
||||
make
|
||||
install:
|
||||
make install DESTDIR="${PREFIX}"
|
||||
|
|
|
@ -3,7 +3,7 @@ prepare:
|
|||
tar -xf curl.tar.gz
|
||||
cd curl
|
||||
make:
|
||||
@./configure --prefix=${PREFIX}/usr --with-openssl
|
||||
@./configure --prefix=/usr --with-openssl
|
||||
make
|
||||
install:
|
||||
make install DESTDIR="${PREFIX}"
|
||||
|
|
|
@ -3,7 +3,7 @@ prepare:
|
|||
cd xserver
|
||||
xorg:
|
||||
./configure \
|
||||
--prefix=${PREFIX} \
|
||||
--prefix=/usr \
|
||||
--localstatedir=/var \
|
||||
--disable-systemd-logind \
|
||||
--disable-xwayland \
|
||||
|
|
|
@ -3,7 +3,7 @@ prepare:
|
|||
cd xz
|
||||
make:
|
||||
./configure \
|
||||
--prefix=${PREFIX} \
|
||||
--prefix=/usr \
|
||||
--disable-nls
|
||||
make
|
||||
install:
|
||||
|
|
Loading…
Reference in a new issue