diff --git a/common/Makefile b/common/Makefile index 022c002d..21c892b7 100644 --- a/common/Makefile +++ b/common/Makefile @@ -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 diff --git a/common/make_jar.sh b/common/make_jar.sh index 73193f61..a0b04e79 100644 --- a/common/make_jar.sh +++ b/common/make_jar.sh @@ -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 '^[-+][^-+]' )