main makefile: remove unnecessary realpath because it breaks on cygwin

ico
Mariano Alvira 2012-02-17 11:51:56 -05:00
parent 68591919e6
commit 6233de96b9
1 changed files with 1 additions and 1 deletions

View File

@ -109,7 +109,7 @@ endif
### Include target makefile (TODO Unsafe?)
target_makefile := $(wildcard ${realpath $(CONTIKI)}/platform/$(TARGET)/Makefile.$(TARGET) ${foreach TDIR, $(TARGETDIRS), $(TDIR)/$(TARGET)/Makefile.$(TARGET)})
target_makefile := $(wildcard $(CONTIKI)/platform/$(TARGET)/Makefile.$(TARGET) ${foreach TDIR, $(TARGETDIRS), $(TDIR)/$(TARGET)/Makefile.$(TARGET)})
# Check if the target makefile exists, and create the object directory if necessary.
ifeq ($(strip $(target_makefile)),)