summaryrefslogtreecommitdiff
path: root/Makefile.common
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2003-08-04 19:48:10 +0000
committerChris Lattner <sabre@nondot.org>2003-08-04 19:48:10 +0000
commit7bb107de410fe731dc87b3c18c5f514e634498a4 (patch)
tree8edb7384c91369b7422c406aaf9916458c9c048a /Makefile.common
parenta328f887c70786bdbe8e75bffa4387dae77bb6b3 (diff)
downloadllvm-7bb107de410fe731dc87b3c18c5f514e634498a4.tar.gz
llvm-7bb107de410fe731dc87b3c18c5f514e634498a4.tar.bz2
llvm-7bb107de410fe731dc87b3c18c5f514e634498a4.tar.xz
While I'm looking at it, line up the SED lines
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@7572 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'Makefile.common')
-rw-r--r--Makefile.common5
1 files changed, 3 insertions, 2 deletions
diff --git a/Makefile.common b/Makefile.common
index 9dfbdffe24..dd9ad9bd13 100644
--- a/Makefile.common
+++ b/Makefile.common
@@ -767,8 +767,9 @@ YACC_OUTPUT = $(addprefix $(YACC_FILES:%.y=%), .h .cpp .output)
#
%.cpp: %.l
@echo Flex\'ing $<...
- $(VERB) $(FLEX) -t $< | $(SED) '/^find_rule/d' | \
- $(SED) 's/void yyunput/inline void yyunput/' | \
+ $(VERB) $(FLEX) -t $< | \
+ $(SED) '/^find_rule/d' | \
+ $(SED) 's/void yyunput/inline void yyunput/' | \
$(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