1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2026-02-06 21:55:45 +01:00

Fix: build system

Hi developers

I'm afraid you don't notice the build system have been borken since
help system is replace to XSLTransform from asciidoc.
because the build system does'nt archives *.xsl files.

Please review the attached patches

Best regards.
----
teramako
This commit is contained in:
"M.Terada"
2009-11-02 00:22:22 -05:00
parent 8eea868626
commit 3f4602ca3c
2 changed files with 2 additions and 2 deletions

View File

@@ -16,7 +16,7 @@ MAKE_JAR = sh $(BASE)/make_jar.sh
# TODO: specify source files manually?
JAR_BASES = $(TOP) $(BASE)
JAR_DIRS = content skin locale
JAR_TEXTS = js css dtd xml xul html xhtml
JAR_TEXTS = js css dtd xml xul html xhtml xsl
JAR_BINS = png
JAR = chrome/$(NAME).jar

View File

@@ -19,7 +19,7 @@ getfiles () {
}
copytext () {
sed -e "s,###VERSION###,$VERSION,g" \
-e "s,###DATE###,$DATE,g" \
-e "s,###DATE###,$BUILD_DATE,g" \
<"$1" >"$2"
cmp -s "$1" "$2" ||
( echo "modified: $1"; diff -u "$1" "$2" | grep '^[-+][^-+]' )