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 tar -xf binutils.tar.gz
cd binutils cd binutils
make: make:
@../configure --prefix=${PREFIX}/usr \ @../configure --prefix=/usr \
--enable-gold \ --enable-gold \
--enable-ld=default \ --enable-ld=default \
--enable-plugins \ --enable-plugins \

View file

@ -3,7 +3,7 @@ prepare:
tar -xf bison.tar.gz tar -xf bison.tar.gz
cd bison cd bison
make: make:
@./configure --prefix=${PREFIX}/usr @./configure --prefix=/usr
make make
install: install:
make install DESTDIR="${PREFIX}" make install DESTDIR="${PREFIX}"

View file

@ -3,7 +3,7 @@ prepare:
tar -xf curl.tar.gz tar -xf curl.tar.gz
cd curl cd curl
make: make:
@./configure --prefix=${PREFIX}/usr --with-openssl @./configure --prefix=/usr --with-openssl
make make
install: install:
make install DESTDIR="${PREFIX}" make install DESTDIR="${PREFIX}"

View file

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

View file

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