summaryrefslogtreecommitdiffstats
path: root/source/aparser
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>2000-05-14 14:08:16 +0000
committerAndrew Tridgell <tridge@samba.org>2000-05-14 14:08:16 +0000
commit6aa51dc1a569358935190526960ac80b7b53dd91 (patch)
tree3f63b18d619f0c28e5bca44f4de95ab167fd477b /source/aparser
parent14ded82dc92ae6eff7639351f391a33b9cc31c0d (diff)
downloadsamba-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.awk1
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) {