diff options
author | Jelle Raaijmakers <jelle@gmta.nl> | 2022-09-13 13:16:28 +0200 |
---|---|---|
committer | Tim Flynn <trflynn89@pm.me> | 2022-09-13 13:44:01 -0400 |
commit | 7e85ec3431d19b542d684406d44c2fd9484af83b (patch) | |
tree | 3b6e5b1a354de6965fc4288caf74aa8e26fc606c /Ports/qt6-serenity | |
parent | 5bfc61bc690b5813533987b4ffee31889c9227e0 (diff) | |
download | serenity-7e85ec3431d19b542d684406d44c2fd9484af83b.zip |
Ports: Do not allow `clean*` to be overridden
There were only two packages making use of this functionality, but it
seems more sensible to have a fixed implementation for the cleaning of
ports - especially now they delete the entire build directory and/or
dist files.
Diffstat (limited to 'Ports/qt6-serenity')
-rwxr-xr-x | Ports/qt6-serenity/package.sh | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/Ports/qt6-serenity/package.sh b/Ports/qt6-serenity/package.sh index 6edfc6c64d..3349f7081d 100755 --- a/Ports/qt6-serenity/package.sh +++ b/Ports/qt6-serenity/package.sh @@ -37,7 +37,3 @@ build() { install() { run ninja install } - -clean() { - run ninja clean -} |