summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Mark Bell <jmb@netsurf-browser.org>2011-02-05 10:20:51 +0000
committerJohn Mark Bell <jmb@netsurf-browser.org>2011-02-05 10:20:51 +0000
commit8f3254b9a5922b251ad7f4010233587cfa304aec (patch)
tree0cf33c9e27d0e5eac808a11a55f4b3d6a2d555e3
parent84165099412c7765ef58fa7ee9f620c13600a030 (diff)
downloadlibcss-8f3254b9a5922b251ad7f4010233587cfa304aec.tar.gz
libcss-8f3254b9a5922b251ad7f4010233587cfa304aec.tar.bz2
Use $(GREP) instead of grep
svn path=/trunk/libcss/; revision=11614
-rw-r--r--src/parse/properties/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/parse/properties/Makefile b/src/parse/properties/Makefile
index fa83a08..2cc192e 100644
--- a/src/parse/properties/Makefile
+++ b/src/parse/properties/Makefile
@@ -36,7 +36,7 @@ define gen_prop_parser
$(DIR)autogenerated_$1.c: $(DIR)properties.gen $(BUILDDIR)/gen_parser
$$(VQ)$$(ECHO) $$(ECHOFLAGS) "GENERATE: $$@"
- $$(Q)$$(BUILDDIR)/gen_parser -o $$@ '$(shell grep "^$1:" $(DIR)properties.gen)'
+ $$(Q)$$(BUILDDIR)/gen_parser -o $$@ '$(shell $(GREP) "^$1:" $(DIR)properties.gen)'
AUTOGEN_SOURCES := $$(AUTOGEN_SOURCES) autogenerated_$1.c