dlugolecki.net.pl
Dziennik
Polecane
Software
projects
/
gedcom-parse.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
9ea7127
)
Portability fix: grep isn't always understanding full regex syntax.
author
Peter Verthez
<Peter.Verthez@advalvas.be>
Wed, 23 Oct 2002 17:00:35 +0000
(17:00 +0000)
committer
Peter Verthez
<Peter.Verthez@advalvas.be>
Wed, 23 Oct 2002 17:00:35 +0000
(17:00 +0000)
include/Makefile.am
patch
|
blob
|
history
diff --git
a/include/Makefile.am
b/include/Makefile.am
index 56b84acfd065268b7a0db76497838af156c6ae55..a098fbba0fc3d6de62c2040011d8f2041d8df185 100644
(file)
--- a/
include/Makefile.am
+++ b/
include/Makefile.am
@@
-9,5
+9,6
@@
BUILT_SOURCES = gedcom.h \
EXTRA_DIST = gedcom.h.in
gedcom-tags.h: $(srcdir)/../gedcom/gedcom.tabgen.h
- grep "TAG_\|USERTAG" $< > $@
+ grep "TAG_" $< > $@
+ grep "USERTAG" $< >> $@