8 lines
142 B
Bash
Executable File
8 lines
142 B
Bash
Executable File
#!/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
|