summaryrefslogtreecommitdiff
path: root/src/basic/architecture.h
diff options
context:
space:
mode:
authorJohn Paul Adrian Glaubitz <glaubitz@physik.fu-berlin.de>2016-05-16 21:25:36 +0200
committerLennart Poettering <lennart@poettering.net>2016-05-16 21:25:36 +0200
commitcd042078df2151d7824abf91107a0d4a8716e54f (patch)
treeaf197f17aa07415004bd03e4ddd14cf3e73d5140 /src/basic/architecture.h
parent833f92ad39beca0e954e91e5764ffc83f8d0c1cf (diff)
basic: Fix incorrect architecture mapping on sparc64. (#3274)
Diffstat (limited to 'src/basic/architecture.h')
-rw-r--r--src/basic/architecture.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/basic/architecture.h b/src/basic/architecture.h
index 91ec108e04..b3e4d85906 100644
--- a/src/basic/architecture.h
+++ b/src/basic/architecture.h
@@ -116,7 +116,7 @@ int uname_architecture(void);
#elif defined(__s390__)
# define native_architecture() ARCHITECTURE_S390
# define LIB_ARCH_TUPLE "s390-linux-gnu"
-#elif defined(__sparc64__)
+#elif defined(__sparc__) && defined (__arch64__)
# define native_architecture() ARCHITECTURE_SPARC64
# define LIB_ARCH_TUPLE "sparc64-linux-gnu"
#elif defined(__sparc__)