[llvm-commits] CVS: llvm/Makefile.common
Chris Lattner
lattner at cs.uiuc.edu
Mon Aug 4 15:08:08 PDT 2003
Changes in directory llvm:
Makefile.common updated: 1.105 -> 1.106
---
Log message:
Urg, do not print "foo has changed" messages
---
Diffs of the changes:
Index: llvm/Makefile.common
diff -u llvm/Makefile.common:1.105 llvm/Makefile.common:1.106
--- llvm/Makefile.common:1.105 Mon Aug 4 14:48:10 2003
+++ llvm/Makefile.common Mon Aug 4 15:07:01 2003
@@ -773,7 +773,7 @@
$(SED) 's/void \*yy_flex_realloc/inline void *yy_flex_realloc/' | \
$(SED) 's/#define YY_BUF_SIZE 16384/#define YY_BUF_SIZE (16384*64)/' \
> $@.tmp
- $(VERB) diff -q $@ $@.tmp || ${MV} -f $@.tmp $@
+ $(VERB) diff -q $@ $@.tmp > /dev/null || ${MV} -f $@.tmp $@
@# remove the output of flex if it didn't get moved over...
@rm -f $@.tmp
@@ -783,8 +783,8 @@
%.cpp %.h : %.y
@echo Bison\'ing $<...
$(VERB) $(BISON) -v -d -p $(<:%Parser.y=%) $*.y
- $(VERB) diff -q $*.tab.c $*.cpp || ${MV} -f $*.tab.c $*.cpp
- $(VERB) diff -q $*.tab.h $*.h || ${MV} -f $*.tab.h $*.h
+ $(VERB) diff -q $*.tab.c $*.cpp > /dev/null || ${MV} -f $*.tab.c $*.cpp
+ $(VERB) diff -q $*.tab.h $*.h > /dev/null || ${MV} -f $*.tab.h $*.h
@# If the files were not updated, don't leave them lying around...
@rm -f $*.tab.c $*.tab.h
More information about the llvm-commits
mailing list