10 lines
116 B
Bash
Executable File
10 lines
116 B
Bash
Executable File
#!/bin/sh -e
|
|
|
|
sed -i'' '/ -fforce-mem/d' configure
|
|
|
|
./configure \
|
|
--prefix=/usr
|
|
|
|
make
|
|
make DESTDIR="$1" install
|