8 lines
136 B
Bash
Executable File
8 lines
136 B
Bash
Executable File
#!/bin/sh -e
|
|
|
|
# -pie in LDFLAGS breaks our build.
|
|
LDFLAGS="$(echo $LDFLAGS|sed 's/-pie//')"
|
|
|
|
make
|
|
make DESTDIR="$1" PREFIX=/usr install
|