Switch to src only for snuffleupagus
We can't assume that any other present or future package won't contain a "src" directory we shouldn't "cd" into. Also, we have to invoke "cd" just once, otherwise the next "cd -" will enter the wrong directory.pull/125/head
parent
7306861194
commit
7ffbb142a4
|
@ -1008,8 +1008,14 @@ getPackageSource() {
|
||||||
installModuleFromSource() {
|
installModuleFromSource() {
|
||||||
printf '### INSTALLING MODULE %s FROM SOURCE CODE ###\n' "$1"
|
printf '### INSTALLING MODULE %s FROM SOURCE CODE ###\n' "$1"
|
||||||
installModuleFromSource_dir="$(getPackageSource "$2")"
|
installModuleFromSource_dir="$(getPackageSource "$2")"
|
||||||
|
case "$1" in
|
||||||
|
snuffleupagus)
|
||||||
|
cd "$installModuleFromSource_dir/src"
|
||||||
|
;;
|
||||||
|
*)
|
||||||
cd "$installModuleFromSource_dir"
|
cd "$installModuleFromSource_dir"
|
||||||
[ -d "$installModuleFromSource_dir"/src ] && cd src
|
;;
|
||||||
|
esac
|
||||||
phpize
|
phpize
|
||||||
./configure $3 CFLAGS="${4:-}"
|
./configure $3 CFLAGS="${4:-}"
|
||||||
make -j$(nproc) install
|
make -j$(nproc) install
|
||||||
|
|
Loading…
Reference in New Issue