diff options
author | William Pitcock <nenolod@dereferenced.org> | 2011-07-16 04:29:09 -0500 |
---|---|---|
committer | William Pitcock <nenolod@dereferenced.org> | 2011-07-16 04:29:09 -0500 |
commit | 86a67d4415155e609ed8d64fff13d8e0cab663ba (patch) | |
tree | b83724dd4d0d28df2bc0fb41cb944db4c677617e /src/apk.c | |
parent | 37a682e5606d1214f0209180d2a6e6b682382989 (diff) | |
download | apk-tools-86a67d4415155e609ed8d64fff13d8e0cab663ba.tar.gz apk-tools-86a67d4415155e609ed8d64fff13d8e0cab663ba.tar.bz2 apk-tools-86a67d4415155e609ed8d64fff13d8e0cab663ba.tar.xz apk-tools-86a67d4415155e609ed8d64fff13d8e0cab663ba.zip |
apk: use APK_DEFAULT_ARCH in version().
Diffstat (limited to 'src/apk.c')
-rw-r--r-- | src/apk.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -72,7 +72,7 @@ static struct apk_option generic_options[] = { static int version(void) { - printf("apk-tools " APK_VERSION "\n"); + printf("apk-tools " APK_VERSION ", compiled for " APK_DEFAULT_ARCH ".\n"); return 0; } |