diff options
author | Panagiotis Vasilopoulos <hello@alwayslivid.com> | 2021-04-20 18:42:04 +0300 |
---|---|---|
committer | Linus Groh <mail@linusgroh.de> | 2021-04-20 18:20:00 +0200 |
commit | 492f7132d297edc66efdad5a87135bbcef608c8b (patch) | |
tree | baa5ecd698ed247ea4342881e2121d8604a2adc5 /Ports/bzip2/package.sh | |
parent | 139288b071098fc0e2127800e4b18194a8f4035b (diff) | |
download | serenity-492f7132d297edc66efdad5a87135bbcef608c8b.zip |
Ports: Improve consistency and quality of ports
- Replaced /Root with
- Improved documentation.
- Removed a few typos.
- Replaced with
- Added brackets in some cases.
Most of the changes were reviewed and applied manually.
Diffstat (limited to 'Ports/bzip2/package.sh')
-rwxr-xr-x | Ports/bzip2/package.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Ports/bzip2/package.sh b/Ports/bzip2/package.sh index 2766d137fb..eefb5548e1 100755 --- a/Ports/bzip2/package.sh +++ b/Ports/bzip2/package.sh @@ -4,12 +4,12 @@ version=1.0.8 files="https://sourceware.org/pub/bzip2/bzip2-${version}.tar.gz bzip2-${version}.tar.gz 67e051268d0c475ea773822f7500d0e5" auth_type=md5 makeopts=bzip2 -installopts="PREFIX=${SERENITY_BUILD_DIR}/Root/usr/local" +installopts="PREFIX=${SERENITY_INSTALL_ROOT}/usr/local" build() { run make CC="${CC}" $makeopts bzip2 } install() { - run make DESTDIR=$DESTDIR CC="${CC}" $installopts install + run make DESTDIR=${SERENITY_INSTALL_ROOT} CC="${CC}" $installopts install } |