summaryrefslogtreecommitdiff
path: root/utils
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@openadk.org>2016-05-22 10:26:26 +0200
committerWaldemar Brodkorb <wbx@openadk.org>2016-05-24 20:38:31 +0200
commitb1fb0d0bf5d09bf9dbdbc320814bd087d4d26460 (patch)
tree365626d43acf93b38f482ab6afcf708f4853eccc /utils
parent6a8ccc95528f5e86a8770ed15ce89609b5b3dee9 (diff)
microblaze: fix ELF detection in ld.so
Diffstat (limited to 'utils')
-rw-r--r--utils/ldd.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/ldd.c b/utils/ldd.c
index 7fd4f7bb0..f6413c67c 100644
--- a/utils/ldd.c
+++ b/utils/ldd.c
@@ -107,7 +107,7 @@
#endif
#if defined(__microblaze__)
-#define MATCH_MACHINE(x) (x == EM_MICROBLAZE_OLD)
+#define MATCH_MACHINE(x) (x == EM_MICROBLAZE)
#define ELFCLASSM ELFCLASS32
#endif