diff options
author | Peter S. Mazinger <ps.m@gmx.net> | 2011-03-31 10:19:52 +0200 |
---|---|---|
committer | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2012-06-15 14:00:35 +0200 |
commit | 0f34bed3f407464c18e2261d12ae53e90e333d85 (patch) | |
tree | 9cc3492ee36b599fb10b4057169e1fac0ab27351 /utils | |
parent | e041f4b2e2f2c3162baef3b20dd1712a8e639252 (diff) |
utils: expand search path to find dl-sysdep.h
Signed-off-by: Peter S. Mazinger <ps.m@gmx.net>
Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com>
Diffstat (limited to 'utils')
-rw-r--r-- | utils/Makefile.in | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/utils/Makefile.in b/utils/Makefile.in index 1714d2866..d7252824c 100644 --- a/utils/Makefile.in +++ b/utils/Makefile.in @@ -10,6 +10,7 @@ subdirs += utils CFLAGS-utils := \ $(SSP_ALL_CFLAGS) \ + -I$(top_srcdir)ldso/ldso/$(TARGET_ARCH) \ -I$(top_srcdir)ldso/include \ -DUCLIBC_RUNTIME_PREFIX=\"$(RUNTIME_PREFIX)\" \ -DUCLIBC_LDSO=\"$(UCLIBC_LDSO)\" \ @@ -55,9 +56,11 @@ BUILD_CFLAGS-utils := \ $(UTILS_CONFIG_FLAGS-y) BUILD_CFLAGS-ldconfig.host := \ -DBUILDING_LINKAGE \ + -I$(top_srcdir)ldso/ldso/$(TARGET_ARCH) \ -I$(top_srcdir)ldso/include BUILD_CFLAGS-ldd.host := \ -DBUILDING_LINKAGE \ + -I$(top_srcdir)ldso/ldso/$(TARGET_ARCH) \ -I$(top_srcdir)ldso/include \ -include $(top_srcdir)include/elf.h BUILD_CFLAGS-locale.host := \ |