diff options
author | Pascal Terjan <pterjan@mageia.org> | 2019-05-04 17:11:01 +0000 |
---|---|---|
committer | Pascal Terjan <pterjan@mageia.org> | 2019-05-04 17:11:01 +0000 |
commit | bb4a5dd108fde7118664b092718fdf96d19f6e66 (patch) | |
tree | 093d2e5fe26bd74322a9fb04d8ce253f9f94993e /configure.ac | |
parent | 61bbd00cb4ac613191b6179bc1f03e55612f3bad (diff) | |
download | rpm-setup-bb4a5dd108fde7118664b092718fdf96d19f6e66.tar rpm-setup-bb4a5dd108fde7118664b092718fdf96d19f6e66.tar.gz rpm-setup-bb4a5dd108fde7118664b092718fdf96d19f6e66.tar.bz2 rpm-setup-bb4a5dd108fde7118664b092718fdf96d19f6e66.tar.xz rpm-setup-bb4a5dd108fde7118664b092718fdf96d19f6e66.zip |
Make armv7hl chroots on aarch64 work as expected
set arch_compat so that urpmi accepts to install armv7hl packages
and set canonical architecture to be armv7hl
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac index 1d02040..4dfaf6f 100644 --- a/configure.ac +++ b/configure.ac @@ -39,6 +39,7 @@ AC_CHECK_HEADERS([string.h]) CANONTARGETCPU=${target_cpu} CANONTARGETGNU=-gnu ARMV7CANONTARGETCPU="armv5tl" +ARMV8CANONTARGETCPU="armv8l" case "${target_cpu}" in *86|athlon|k6|pentium*) @@ -101,6 +102,7 @@ case "${target_cpu}" in CANONTARGETCPU=armv7hl CANONTARGETGNU=-gnueabi ARMV7CANONTARGETCPU="armv7hl" + ARMV8CANONTARGETCPU="armv7hl" esac RPMALLARCH="${RPMALLARCH} noarch" AC_SUBST(RPMALLARCH) @@ -108,6 +110,7 @@ AC_SUBST(CANONTARGETCPU) AC_SUBST(CANONTARGETCPU32) AC_SUBST(CANONTARGETGNU) AC_SUBST(ARMV7CANONTARGETCPU) +AC_SUBST(ARMV8CANONTARGETCPU) # # get rid of the 4-th tuple, if config.guess returned "linux-gnu" for build_os |