From c9b14566672fff2cb1e138b4492867452cf2ef78 Mon Sep 17 00:00:00 2001 From: Stas Degteff Date: Tue, 1 Nov 2005 16:53:29 +0000 Subject: [PATCH] Fix a generation of the tokencfg.txt --- docs/Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/Makefile b/docs/Makefile index 1449ef8..2ac71e2 100755 --- a/docs/Makefile +++ b/docs/Makefile @@ -29,7 +29,8 @@ tokentpl.txt: ../golded3/gemsgs.cpp echo '* These macroses may be used in:' >> $@ echo '* template file, externutil command line, tearline and tagline.' >> $@ echo '==========================================================================' >> $@ - grep tokenxchg $< | sed -e '/^static bool tokenxchg/d' -e 's/^.*"\(@\w*\)".*$$/\1/' | sort -u >> $@ + grep tokenxchg $< | sed -ne 's/^.*"\(@\w*\)".*$$/\1/p' | sort -u >> $@ +# grep tokenxchg $< | sed -e '/^static bool tokenxchg/d' -e 's/^.*"\(@\w*\)".*$$/\1/' | sort -u >> $@ tokencfg.txt: ../golded3/gccfgg.h @echo '* Golded+ config file tokens list.' > $@