aboutsummaryrefslogtreecommitdiffstats
path: root/extras/mini-os/Config.mk
diff options
context:
space:
mode:
authorKeir Fraser <keir.fraser@citrix.com>2008-07-11 12:45:06 +0100
committerKeir Fraser <keir.fraser@citrix.com>2008-07-11 12:45:06 +0100
commite7329de45302e749a31a6f7ea2889ce8e2ff8e75 (patch)
tree144c296e38998b712f7403b22620254894fca280 /extras/mini-os/Config.mk
parenta896e816af763ab9c35bb7fb2f63a0928be3b530 (diff)
downloadxen-e7329de45302e749a31a6f7ea2889ce8e2ff8e75.tar.gz
xen-e7329de45302e749a31a6f7ea2889ce8e2ff8e75.tar.bz2
xen-e7329de45302e749a31a6f7ea2889ce8e2ff8e75.zip
stubdom: do not use realpath, new in make 3.81
Signed-off-by: Samuel Thibault <samuel.thibault@eu.citrix.com>
Diffstat (limited to 'extras/mini-os/Config.mk')
-rw-r--r--extras/mini-os/Config.mk8
1 files changed, 4 insertions, 4 deletions
diff --git a/extras/mini-os/Config.mk b/extras/mini-os/Config.mk
index a6a738a68f..a1a2283ecc 100644
--- a/extras/mini-os/Config.mk
+++ b/extras/mini-os/Config.mk
@@ -38,15 +38,15 @@ EXTRA_INC = $(ARCH_INC)
# This must be before include minios.mk!
include $(MINI-OS_ROOT)/$(TARGET_ARCH_DIR)/arch.mk
-extra_incl := $(foreach dir,$(EXTRA_INC),-isystem $(realpath $(MINI-OS_ROOT)/include/$(dir)))
+extra_incl := $(foreach dir,$(EXTRA_INC),-isystem $(CURDIR)/$(MINI-OS_ROOT)/include/$(dir))
-DEF_CPPFLAGS += -isystem $(realpath $(MINI-OS_ROOT)/include)
+DEF_CPPFLAGS += -isystem $(CURDIR)/$(MINI-OS_ROOT)/include
DEF_CPPFLAGS += -D__MINIOS__
ifeq ($(libc),y)
DEF_CPPFLAGS += -DHAVE_LIBC
-DEF_CPPFLAGS += -isystem $(realpath $(MINI-OS_ROOT)/include/posix)
-DEF_CPPFLAGS += -isystem $(realpath $(XEN_ROOT)/tools/xenstore)
+DEF_CPPFLAGS += -isystem $(CURDIR)/$(MINI-OS_ROOT)/include/posix
+DEF_CPPFLAGS += -isystem $(CURDIR)/$(XEN_ROOT)/tools/xenstore
endif
ifneq ($(LWIPDIR),)