diff options
author | Liav A <liavalb@gmail.com> | 2022-10-02 20:55:22 +0300 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2022-10-03 11:14:53 +0200 |
commit | 74018be739aa8fee6979c750beee0105867f6dcc (patch) | |
tree | b33bc4d46484a4ad2bd2431a9376270b07c2b024 /Meta/export-argsparser-manpages.sh | |
parent | 4e0f85432a5d7b53555da25c39dee6f6d093f1b9 (diff) | |
download | serenity-74018be739aa8fee6979c750beee0105867f6dcc.zip |
Meta: Make x86-64 target the default
This is a preparation to check if our users find noticeable bugs in the
x86-64 target, before we can decide if we want to remove the i686 target
for good.
Diffstat (limited to 'Meta/export-argsparser-manpages.sh')
-rwxr-xr-x | Meta/export-argsparser-manpages.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Meta/export-argsparser-manpages.sh b/Meta/export-argsparser-manpages.sh index 791ce5ba75..8e56804fde 100755 --- a/Meta/export-argsparser-manpages.sh +++ b/Meta/export-argsparser-manpages.sh @@ -29,7 +29,7 @@ sudo true if [ -z "$BUILD_DIR" ]; then if [ -z "$SERENITY_ARCH" ]; then - export SERENITY_ARCH="i686" + export SERENITY_ARCH="x86_64" echo "SERENITY_ARCH not given. Assuming ${SERENITY_ARCH}." fi BUILD_DIR=Build/"$SERENITY_ARCH" |