From 16cafc87178de771e25cbdae2007f34ea831e820 Mon Sep 17 00:00:00 2001 From: NicJA Date: Fri, 22 Aug 2008 21:21:52 +0000 Subject: [PATCH] Rename SRCDIR so it doesnt conflict with the BUILD SRCDIR git-svn-id: https://svn.aros.org/svn/aros/trunk/AROS@29230 fb15a70f-31f2-0310-bbcc-cdcc74a49acc --- config/make.tmpl | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/config/make.tmpl b/config/make.tmpl index c98c27c458..fea8edcb34 100644 --- a/config/make.tmpl +++ b/config/make.tmpl @@ -197,13 +197,13 @@ TMP_SRCDIR := %(srcdir) $(addprefix %(targetdir)/,%(files)) : | %(stampfile) -%(stampfile) : SRCDIR := %(srcdir) +%(stampfile) : COPYSRCDIR := %(srcdir) %(stampfile) : TGTDIR := %(targetdir) %(stampfile) : FILES := %(files) %(stampfile) : $(addprefix %(srcdir)/,%(files)) @for f in $(FILES); do \ - $(IF) ! $(CMP) -s $(SRCDIR)/$$f $(TGTDIR)/$$f ; then \ - $(CP) $(SRCDIR)/$$f $(TGTDIR)/$$f ; \ + $(IF) ! $(CMP) -s $(COPYSRCDIR)/$$f $(TGTDIR)/$$f ; then \ + $(CP) $(COPYSRCDIR)/$$f $(TGTDIR)/$$f ; \ fi ; \ done @$(TOUCH) $@ -- 2.11.4.GIT