diff options
author | Andrew Tridgell <tridge@samba.org> | 2000-05-14 14:08:16 +0000 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2000-05-14 14:08:16 +0000 |
commit | 6aa51dc1a569358935190526960ac80b7b53dd91 (patch) | |
tree | 3f63b18d619f0c28e5bca44f4de95ab167fd477b /source/aparser | |
parent | 14ded82dc92ae6eff7639351f391a33b9cc31c0d (diff) | |
download | samba-6aa51dc1a569358935190526960ac80b7b53dd91.tar.gz samba-6aa51dc1a569358935190526960ac80b7b53dd91.tar.xz samba-6aa51dc1a569358935190526960ac80b7b53dd91.zip |
moved *.tpl templates into templates/ subdirectory
Diffstat (limited to 'source/aparser')
-rw-r--r-- | source/aparser/template.awk | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/source/aparser/template.awk b/source/aparser/template.awk index ddaa604b99d..20157008354 100644 --- a/source/aparser/template.awk +++ b/source/aparser/template.awk @@ -3,6 +3,7 @@ function print_template(f, tplname, v, LOCAL, i, pat, line) { + tplname="templates/"tplname; if (numlines(tplname) <= 0) fatal("no template "tplname); while ((getline line < tplname) > 0) { while ((i = match(line,"@[a-zA-Z_]*@")) != 0) { |