diff options
author | Ariadne Conill <ariadne@dereferenced.org> | 2022-03-30 00:15:13 +0000 |
---|---|---|
committer | Timo Teräs <timo.teras@iki.fi> | 2022-03-30 09:17:25 +0000 |
commit | feec480b345e7c4f4ab262bdf7a2a3ebce5a31a3 (patch) | |
tree | e0d49b9a812a5bbe26bed8d608a5f26c589c1b36 /src/apk.c | |
parent | 917698ec1d4c9a79e3580cce4cbeb56fd4fa5a96 (diff) | |
download | apk-tools-feec480b345e7c4f4ab262bdf7a2a3ebce5a31a3.tar.gz apk-tools-feec480b345e7c4f4ab262bdf7a2a3ebce5a31a3.tar.bz2 apk-tools-feec480b345e7c4f4ab262bdf7a2a3ebce5a31a3.tar.xz apk-tools-feec480b345e7c4f4ab262bdf7a2a3ebce5a31a3.zip |
keep APK_DEFAULT_ARCH as the define used in source code
Diffstat (limited to 'src/apk.c')
-rw-r--r-- | src/apk.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -48,7 +48,7 @@ time_t time(time_t *tloc) static void version(struct apk_out *out, const char *prefix) { - apk_out_fmt(out, prefix, "apk-tools " APK_VERSION ", compiled for " APK_DEFAULT_FULL_ARCH "."); + apk_out_fmt(out, prefix, "apk-tools " APK_VERSION ", compiled for " APK_DEFAULT_ARCH "."); #ifdef TEST_MODE apk_out_fmt(out, prefix, "TEST MODE BUILD. NOT FOR PRODUCTION USE."); #endif @@ -201,7 +201,7 @@ static int option_parse_global(void *ctx, struct apk_ctx *ac, int opt, const cha ac->arch = optarg; break; case OPT_GLOBAL_print_arch: - puts(APK_DEFAULT_FULL_ARCH); + puts(APK_DEFAULT_ARCH); return -ESHUTDOWN; #ifdef TEST_MODE case OPT_GLOBAL_test_repo: |