debuggers.hg
changeset 18069:03f685b6356a
stubdom: do not use realpath, new in make 3.81
Signed-off-by: Samuel Thibault <samuel.thibault@eu.citrix.com>
Signed-off-by: Samuel Thibault <samuel.thibault@eu.citrix.com>
author | Keir Fraser <keir.fraser@citrix.com> |
---|---|
date | Fri Jul 11 12:45:06 2008 +0100 (2008-07-11) |
parents | 1e91c9a4a3f3 |
children | e10b682f148d |
files | extras/mini-os/Config.mk stubdom/Makefile |
line diff
1.1 --- a/extras/mini-os/Config.mk Fri Jul 11 12:44:15 2008 +0100 1.2 +++ b/extras/mini-os/Config.mk Fri Jul 11 12:45:06 2008 +0100 1.3 @@ -38,15 +38,15 @@ EXTRA_INC = $(ARCH_INC) 1.4 # This must be before include minios.mk! 1.5 include $(MINI-OS_ROOT)/$(TARGET_ARCH_DIR)/arch.mk 1.6 1.7 -extra_incl := $(foreach dir,$(EXTRA_INC),-isystem $(realpath $(MINI-OS_ROOT)/include/$(dir))) 1.8 +extra_incl := $(foreach dir,$(EXTRA_INC),-isystem $(CURDIR)/$(MINI-OS_ROOT)/include/$(dir)) 1.9 1.10 -DEF_CPPFLAGS += -isystem $(realpath $(MINI-OS_ROOT)/include) 1.11 +DEF_CPPFLAGS += -isystem $(CURDIR)/$(MINI-OS_ROOT)/include 1.12 DEF_CPPFLAGS += -D__MINIOS__ 1.13 1.14 ifeq ($(libc),y) 1.15 DEF_CPPFLAGS += -DHAVE_LIBC 1.16 -DEF_CPPFLAGS += -isystem $(realpath $(MINI-OS_ROOT)/include/posix) 1.17 -DEF_CPPFLAGS += -isystem $(realpath $(XEN_ROOT)/tools/xenstore) 1.18 +DEF_CPPFLAGS += -isystem $(CURDIR)/$(MINI-OS_ROOT)/include/posix 1.19 +DEF_CPPFLAGS += -isystem $(CURDIR)/$(XEN_ROOT)/tools/xenstore 1.20 endif 1.21 1.22 ifneq ($(LWIPDIR),)
2.1 --- a/stubdom/Makefile Fri Jul 11 12:44:15 2008 +0100 2.2 +++ b/stubdom/Makefile Fri Jul 11 12:45:06 2008 +0100 2.3 @@ -51,7 +51,7 @@ TARGET_CFLAGS += $(call cc-option,$(CC), 2.4 GCC_INSTALL = $(shell gcc -print-search-dirs | sed -n -e 's/install: \(.*\)/\1/p') 2.5 TARGET_CPPFLAGS += -U __linux__ -U __FreeBSD__ -U __sun__ 2.6 TARGET_CPPFLAGS += -nostdinc 2.7 -TARGET_CPPFLAGS += -isystem $(abspath $(MINI_OS)/include/posix) 2.8 +TARGET_CPPFLAGS += -isystem $(CURDIR)/$(MINI_OS)/include/posix 2.9 TARGET_CPPFLAGS += -isystem $(CROSS_PREFIX)/$(GNU_TARGET_ARCH)-xen-elf/include 2.10 TARGET_CPPFLAGS += -isystem $(GCC_INSTALL)include 2.11 TARGET_CPPFLAGS += -isystem $(CURDIR)/lwip-cvs/src/include