mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 20:37:34 +00:00
Revert "Ports: Fix dependency install if port name is not folder name"
This breaks ports whose name may come up in more than one port name.
This reverts commit cc08f82ddb
.
This commit is contained in:
parent
8070a98288
commit
4c9fbea987
1 changed files with 1 additions and 1 deletions
|
@ -491,7 +491,7 @@ package_install_state() {
|
||||||
installdepends() {
|
installdepends() {
|
||||||
for depend in "${depends[@]}"; do
|
for depend in "${depends[@]}"; do
|
||||||
if [ -z "$(package_install_state $depend)" ]; then
|
if [ -z "$(package_install_state $depend)" ]; then
|
||||||
(cd "$(dirname $(grep -E port=${depend} ../*/package.sh))" && ./package.sh --auto)
|
(cd "../$depend" && ./package.sh --auto)
|
||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue