From 3f4602ca3c39234b0cbf2be92342f52666303172 Mon Sep 17 00:00:00 2001 From: "\"M.Terada\"" Date: Mon, 2 Nov 2009 00:22:22 -0500 Subject: [PATCH] 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 --- common/Makefile | 2 +- common/make_jar.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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 '^[-+][^-+]' )