diff options
author | Mike Gerwitz <gerwitm@lovullo.com> | 2016-08-23 11:25:22 -0400 |
---|---|---|
committer | Mike Gerwitz <gerwitm@lovullo.com> | 2016-08-23 11:26:47 -0400 |
commit | ebb88b93454c7c5b4af629c588b57dd54779c9ce (patch) | |
tree | a6acb49c450e360797fa1c14995cea6293b3787e | |
parent | a6984c990912d57d980c8f955d77f2701510ffe7 (diff) | |
download | tame-ebb88b93454c7c5b4af629c588b57dd54779c9ce.tar.gz tame-ebb88b93454c7c5b4af629c588b57dd54779c9ce.tar.bz2 tame-ebb88b93454c7c5b4af629c588b57dd54779c9ce.zip |
conf.xsl.in -> src/init.xsl.in
The thrush reference was also removed, as TAME does not currently make
use of it.
* .gitignore: Update path accordingly.
* configure.ac: Update path accordingly.
* src/init.xsl.in: Moved from conf.xsl.in.
-rw-r--r-- | .gitignore | 2 | ||||
-rw-r--r-- | configure.ac | 2 | ||||
-rw-r--r-- | src/init.xsl.in (renamed from conf.xsl.in) | 4 |
3 files changed, 2 insertions, 6 deletions
@@ -1,7 +1,7 @@ /test/index.html /test/**/xspec/ /src/**/*.texi -/conf.xsl +/src/conf.xsl *.apply *.info diff --git a/configure.ac b/configure.ac index bb33c5d..cdf8924 100644 --- a/configure.ac +++ b/configure.ac @@ -45,7 +45,7 @@ AS_IF(test ! -d "$HOXSL", AC_MSG_ERROR([hoxsl path '$HOXSL' does not exist!])) AC_MSG_RESULT(found) -AC_CONFIG_FILES([Makefile doc/Makefile conf.xsl]) +AC_CONFIG_FILES([Makefile doc/Makefile src/init.xsl]) AC_OUTPUT diff --git a/conf.xsl.in b/src/init.xsl.in index c5fcde5..8fd93de 100644 --- a/conf.xsl.in +++ b/src/init.xsl.in @@ -36,8 +36,4 @@ select="@REV@" /> <variable name="tame:version-suffix" as="xs:string" select="@SUFFIX@" /> - - <!-- hoxsl path is configured at build time --> - <import href="@HOXSL@/apply/thrush.xsl" /> - </stylesheet> |