10 lines
196 B
Bash
Executable File
10 lines
196 B
Bash
Executable File
#!/bin/sh -e
|
|
|
|
# Remove compiler debug stuff and post-install message.
|
|
sed -i Makefile \
|
|
-e '/CFLAGS.*-g/d' \
|
|
-e '/^install:/s/ post-install$//'
|
|
|
|
make
|
|
make DESTDIR="$1" PREFIX=/usr install
|