diff options
author | Adhemerval Zanella <azanella@linux.vnet.ibm.com> | 2014-02-04 09:48:47 -0200 |
---|---|---|
committer | Adhemerval Zanella <azanella@linux.vnet.ibm.com> | 2014-02-04 09:48:47 -0200 |
commit | 1695c7737655241e1773bdddc93e82c22d8d1584 (patch) | |
tree | dbf5bc7b0f53ba08d89748faab4044a00a916328 /sysdeps | |
parent | dc98b8f5a9e876cbe9a778903c22bb196c43bb3c (diff) | |
download | glibc-1695c7737655241e1773bdddc93e82c22d8d1584.zip glibc-1695c7737655241e1773bdddc93e82c22d8d1584.tar.gz glibc-1695c7737655241e1773bdddc93e82c22d8d1584.tar.bz2 |
abilist-pattern configurability
This patch creates implicit rules to match the abifiles if
abilist-pattern is defined in the architecture Makefile. This allows
machine specific Makefiles to define different abifiles names
(for instance *-le.abilist for powerpc64le).
Diffstat (limited to 'sysdeps')
-rw-r--r-- | sysdeps/powerpc/Makefile | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/sysdeps/powerpc/Makefile b/sysdeps/powerpc/Makefile index f75e625..b11edd7 100644 --- a/sysdeps/powerpc/Makefile +++ b/sysdeps/powerpc/Makefile @@ -27,3 +27,7 @@ ifeq ($(subdir),misc) sysdep_headers += sys/platform/ppc.h tests += test-gettimebase endif + +ifneq (,$(filter %le,$(config-machine))) +abilist-pattern = %-le.abilist +endif |