diff options
author | Mike Frysinger <vapier@gentoo.org> | 2005-11-22 21:31:10 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2005-11-22 21:31:10 +0000 |
commit | 0f85f257a26e18ce1b3043063dee2aa707e97133 (patch) | |
tree | 4629fe62e62a9faa5f5feefd507f7efc8f455663 /Rules.mak | |
parent | 0983188668ca7bc8f081ebea813f19ed348ac3d4 (diff) |
touchup include paths
Diffstat (limited to 'Rules.mak')
-rw-r--r-- | Rules.mak | 12 |
1 files changed, 9 insertions, 3 deletions
@@ -347,7 +347,8 @@ endif PTDIR := $(top_builddir)libpthread/$(PTNAME) # set up system dependencies include dirs (NOTE: order matters!) ifeq ($(UCLIBC_HAS_THREADS_NATIVE),y) -PTINC:= -I$(PTDIR)/compat \ +PTINC := \ + -I$(PTDIR)/compat \ -I$(PTDIR)/sysdeps/unix/sysv/linux/$(TARGET_ARCH) \ -I$(PTDIR)/sysdeps/$(TARGET_ARCH) \ -I$(PTDIR)/sysdeps/unix/sysv/linux \ @@ -374,10 +375,15 @@ gcc_tls_test_fail: @exit 1; endif else -PTINC:= -I$(PTDIR)/sysdeps/$(TARGET_ARCH) \ - -I$(PTDIR)/sysdeps/pthread +PTINC := \ + -I$(PTDIR)/sysdeps/$(TARGET_ARCH) \ + -I$(PTDIR)/sysdeps/pthread \ + -I$(top_builddir)libpthread endif CFLAGS+=$(PTINC) +else + PTNAME := + PTINC := endif # Sigh, some stupid versions of gcc can't seem to cope with '-iwithprefix include' |