diff options
author | Linus Groh <mail@linusgroh.de> | 2021-03-11 21:58:18 +0100 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-03-13 13:13:03 +0100 |
commit | 4c497228a97aa908f62bee9bc06c07b1ed4ad838 (patch) | |
tree | 07f7ccdb8564714b1a5027d8f11dcf111399d4fe /Ports/make | |
parent | 7cb9237be970562e79cc63f8c7d395cf06e53c12 (diff) | |
download | serenity-4c497228a97aa908f62bee9bc06c07b1ed4ad838.zip |
Ports: Use SERENITY_ARCH in --target/--host
Recent ports already do this, let's update the others as well. One step
closer to multi-arch support for ports! :^)
Diffstat (limited to 'Ports/make')
-rwxr-xr-x | Ports/make/package.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Ports/make/package.sh b/Ports/make/package.sh index 2c21e38306..f033162890 100755 --- a/Ports/make/package.sh +++ b/Ports/make/package.sh @@ -7,4 +7,4 @@ http://ftp.gnu.org/gnu/make/make-${version}.tar.gz.sig make-${version}.tar.gz.si https://ftp.gnu.org/gnu/gnu-keyring.gpg gnu-keyring.gpg" auth_type="sig" auth_opts="--keyring ./gnu-keyring.gpg make-${version}.tar.gz.sig" -configopts="--target=i686-pc-serenity --with-sysroot=/ --without-guile" +configopts="--target=${SERENITY_ARCH}-pc-serenity --with-sysroot=/ --without-guile" |