9 lines
115 B
Plaintext
9 lines
115 B
Plaintext
|
#!/usr/bin/bash
|
||
|
|
||
|
case $1 in
|
||
|
--prefix)
|
||
|
sed '1i\'INSTALL_PREFIX="$2" < Makefile.in > Makefile
|
||
|
shift 2
|
||
|
;;
|
||
|
esac
|