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