diff options
Diffstat (limited to 'extra')
-rwxr-xr-x | extra/coreutils/build | 3 | ||||
-rwxr-xr-x | extra/dash/build | 3 | ||||
-rwxr-xr-x | extra/nano/build | 4 | ||||
-rwxr-xr-x | extra/ncurses/build | 4 |
4 files changed, 4 insertions, 10 deletions
diff --git a/extra/coreutils/build b/extra/coreutils/build index 206a476a..cf4e974a 100755 --- a/extra/coreutils/build +++ b/extra/coreutils/build @@ -2,8 +2,7 @@ export CFLAGS="$CFLAGS -static" -./configure \ - --prefix=/usr +cpt-configure make make DESTDIR="$1" install diff --git a/extra/dash/build b/extra/dash/build index 704d598e..cef83d13 100755 --- a/extra/dash/build +++ b/extra/dash/build @@ -2,8 +2,7 @@ export CFLAGS="$CFLAGS -static" -./configure \ - --prefix=/usr +cpt-configure make make DESTDIR="$1" install diff --git a/extra/nano/build b/extra/nano/build index ba2adac0..adbcf2ea 100755 --- a/extra/nano/build +++ b/extra/nano/build @@ -2,9 +2,7 @@ export LDFLAGS="$LDFLAGS -static" -./configure \ - --prefix=/usr \ - --sysconfdir=/etc +cpt-configure make make DESTDIR="$1" install diff --git a/extra/ncurses/build b/extra/ncurses/build index f8be7ab5..27fc49b1 100755 --- a/extra/ncurses/build +++ b/extra/ncurses/build @@ -1,8 +1,6 @@ #!/bin/sh -e -./configure \ - --prefix=/usr \ - --mandir=/usr/share/man \ +cpt-configure \ --enable-pc-files \ --disable-rpath-hack \ --with-pkg-config-libdir=/usr/lib/pkgconfig \ |