diff options
Diffstat (limited to 'extra/coreutils/build')
-rwxr-xr-x | extra/coreutils/build | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/extra/coreutils/build b/extra/coreutils/build new file mode 100755 index 00000000..206a476a --- /dev/null +++ b/extra/coreutils/build @@ -0,0 +1,9 @@ +#!/bin/sh -e + +export CFLAGS="$CFLAGS -static" + +./configure \ + --prefix=/usr + +make +make DESTDIR="$1" install |