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/git | |
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/git')
-rwxr-xr-x | Ports/git/package.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Ports/git/package.sh b/Ports/git/package.sh index 04b6c48973..55f7a25acc 100755 --- a/Ports/git/package.sh +++ b/Ports/git/package.sh @@ -3,7 +3,7 @@ port=git version=2.26.0 useconfigure="true" files="https://mirrors.edge.kernel.org/pub/software/scm/git/git-${version}.tar.xz git-${version}.tar.xz" -configopts="--target=i686-pc-serenity CFLAGS=-DNO_IPV6" +configopts="--target=${SERENITY_ARCH}-pc-serenity CFLAGS=-DNO_IPV6" depends="zlib" build() { |