8 lines
142 B
Plaintext
8 lines
142 B
Plaintext
|
#!/bin/sh -e
|
||
|
|
||
|
# We have to edit make files to change install dir
|
||
|
sed -i "s/lib64/lib/g" config/Makefile.linux
|
||
|
|
||
|
make
|
||
|
make DESTDIR="$1" install
|