enforce proper usage of --prefix

This commit is contained in:
hippoz 2021-06-30 00:59:16 +03:00
parent 7a862170e7
commit 19e01873b0
5 changed files with 6 additions and 6 deletions

View file

@ -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 \

View file

@ -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}"

View file

@ -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}"

View file

@ -3,7 +3,7 @@ prepare:
cd xserver
xorg:
./configure \
--prefix=${PREFIX} \
--prefix=/usr \
--localstatedir=/var \
--disable-systemd-logind \
--disable-xwayland \

View file

@ -3,8 +3,8 @@ prepare:
cd xz
make:
./configure \
--prefix=${PREFIX} \
--disable-nls
--prefix=/usr \
--disable-nls
make
install:
make install DESTDIR="${PREFIX}"