xiaoxiang781216 commented on a change in pull request #5557: URL: https://github.com/apache/incubator-nuttx/pull/5557#discussion_r810646732
########## File path: tools/Export.mk ########## @@ -21,19 +21,10 @@ include $(TOPDIR)/.config include $(EXPORTDIR)/Make.defs -ifdef ARCHSCRIPT - -# ARCHSCRIPT may contain a leading -T; it must not be followed by a space -# for this to work. - -ifeq ($(CONFIG_CYGWIN_WINTOOL),y) -LDPATH = $(shell cygpath -u $(patsubst -T%,%,$(ARCHSCRIPT))) -else -LDPATH = $(patsubst -T%,%,$(ARCHSCRIPT)) -endif - -LDNAME = ${notdir ${LDPATH}} -LDDIR = ${dir ${LDPATH}} +ifneq ($(ARCHSCRIPT),) + LDPATH = $(call CONVERT_PATH,$(ARCHSCRIPT)) Review comment: No, since -T has been removed from: https://github.com/apache/incubator-nuttx/pull/5496 -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: commits-unsubscr...@nuttx.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org