From e5220b4c6834471bc085e002280f4c3b16e3b6e0 Mon Sep 17 00:00:00 2001 From: P. J. McDermott Date: Mon, 20 Feb 2012 20:03:21 -0500 Subject: Remove CPU vendor from architecture tuple. --- (limited to 'src') diff --git a/src/opkbuild b/src/opkbuild index 2c0d3f0..22ea79d 100644 --- a/src/opkbuild +++ b/src/opkbuild @@ -121,7 +121,7 @@ fi # Attempt to detect the target architecture tuple. # NB: Currently cross-compiling is not supported. arch=$(opkg print-architecture | sed -n \ - 's/^arch \([^ -][^ -]*-[^ -][^ -]*-[^ -][^ -]*-[^ -][^ -]*\) [0-9][0-9]*$/\1/p') + 's/^arch \([^ -][^ -]*-[^ -][^ -]*-[^ -][^ -]*\) [0-9][0-9]*$/\1/p') if [ -z "${arch}" ]; then printf 'opkbuild: Error: No installable architecture found\n' >&2 elif [ $(echo "${arch}" | wc -l) -gt 1 ]; then @@ -141,10 +141,10 @@ version=$(oh_get_field Version) # Set environment variables for the build configuration. export OH_PLATFORM="${platform}" export OH_ARCH="${arch}" -IFS=- read OH_ARCH_CPU OH_ARCH_VENDOR OH_ARCH_KERNEL OH_ARCH_LIBS <