diff options
author | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2010-06-13 09:52:45 +0200 |
---|---|---|
committer | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2010-07-06 18:33:22 +0200 |
commit | eaae6e6776ad091a5b84c3fb09f26ff01bda2f18 (patch) | |
tree | 7d0a7b3a47531eb66715527996ed44b965a01301 /libpthread/nptl/sysdeps/Makefile.commonarch | |
parent | c06619d7ab2ebbbc93427ca6a49dcc8d479db549 (diff) |
nptl: fix subdirs handling
Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com>
Diffstat (limited to 'libpthread/nptl/sysdeps/Makefile.commonarch')
-rw-r--r-- | libpthread/nptl/sysdeps/Makefile.commonarch | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/libpthread/nptl/sysdeps/Makefile.commonarch b/libpthread/nptl/sysdeps/Makefile.commonarch index 669e9d318..32fb99884 100644 --- a/libpthread/nptl/sysdeps/Makefile.commonarch +++ b/libpthread/nptl/sysdeps/Makefile.commonarch @@ -4,6 +4,11 @@ # # Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball. # +subdirs += libpthread/nptl/sysdeps \ + libpthread/nptl/sysdeps/$(TARGET_ARCH) +ifneq ($(abspath libpthread/nptl/sysdeps/$(TARGET_ARCH)),$(abspath libpthread/nptl/sysdeps/$(TARGET_ARCH)/$(TARGET_SUBARCH))) +subdirs += libpthread/nptl/sysdeps/$(TARGET_ARCH)/$(TARGET_SUBARCH) +endif PTHREAD_ARCH_DIR := $(top_srcdir)libpthread/nptl/sysdeps/$(TARGET_ARCH) PTHREAD_ARCH_OUT := $(top_builddir)libpthread/nptl/sysdeps/$(TARGET_ARCH) |