Make.defs: Using wrong link script if native window tool used with Cygwin

This commit is contained in:
Gregory Nutt 2016-11-17 07:22:32 -06:00
parent de40e5551f
commit d2800049a3

View File

@ -64,8 +64,12 @@ ifeq ($(CONFIG_WINDOWS_NATIVE),y)
DIRUNLINK = $(TOPDIR)\tools\unlink.bat
else
MKKCONFIG = $(APPDIR)/tools/mkkconfig.sh
DIRLINK = $(TOPDIR)/tools/link.sh
DIRUNLINK = $(TOPDIR)/tools/unlink.sh
ifeq ($(WINTOOL),y)
DIRLINK = $(TOPDIR)/tools/copydir.sh
else
DIRLINK = $(TOPDIR)/tools/link.sh
endif
endif
ifeq ($(WINTOOL),y)