diff options
Diffstat (limited to 'community/gawk/build')
| -rwxr-xr-x | community/gawk/build | 11 | 
1 files changed, 11 insertions, 0 deletions
| diff --git a/community/gawk/build b/community/gawk/build new file mode 100755 index 00000000..1e747317 --- /dev/null +++ b/community/gawk/build @@ -0,0 +1,11 @@ +#!/bin/sh -e + +export LDFLAGS="$LDFLAGS -static" + +./configure \ +    --prefix=/usr \ +    --sysconfdir=/etc \ +    --disable-nls + +make +make DESTDIR="$1" install | 
