summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFabien Tassin <fta@ubuntu.com>2008-09-19 18:56:43 +0200
committerFabien Tassin <fta@ubuntu.com>2008-09-19 18:56:43 +0200
commite78e3ef2f7449fc9bc2e4cbb8ff83d6d7b346400 (patch)
treeeae4eac7a6af8aaad88a2ddbd3cb687d9e79dac6
parentb8eae4e3bad5804dc60e764402f7d65f5624d88a (diff)
* [mozclient] drop $(EXT), left-over from when mozclient.pl was substed
and use -c instead - update src/mozclient.mk.in
-rw-r--r--debian/changelog13
-rw-r--r--src/mozclient.mk.in8
2 files changed, 12 insertions, 9 deletions
diff --git a/debian/changelog b/debian/changelog
index 4f56f8e..9ceb326 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -3,12 +3,15 @@ mozilla-devscripts (0.11) UNRELEASED; urgency=low
* [ minefield-packager ] upstream builds are now identified with
a trailling "-mozilla-central", it's no longer "-trunk"
- update src/minefield-packager.mk.in
- * [ mozclient ] add support for external project files helping adoption
- of mozilla-devscripts by downstream. Introduce MOZCLIENT_PROJECTDIR.
- - update README
- - update src/mozclient.mk.in
+ * [ mozclient ]
+ - add support for external project files helping adoption
+ of mozilla-devscripts by downstream. Introduce MOZCLIENT_PROJECTDIR.
+ - update README
+ - update src/mozclient.mk.in
+ - drop $(EXT), left-over from when mozclient.pl was substed and use -c instead
+ - update src/mozclient.mk.in
- -- Fabien Tassin <fta@ubuntu.com> Wed, 17 Sep 2008 19:50:07 +0200
+ -- Fabien Tassin <fta@ubuntu.com> Fri, 19 Sep 2008 18:31:05 +0200
mozilla-devscripts (0.10) intrepid; urgency=low
diff --git a/src/mozclient.mk.in b/src/mozclient.mk.in
index 5613585..a8b0c43 100644
--- a/src/mozclient.mk.in
+++ b/src/mozclient.mk.in
@@ -25,7 +25,7 @@
MOZDEVSCRIPT_DIR = mozclient
ifeq (mozclient,$(MOZDEVSCRIPT_DIR))
- EXT=.in
+ ARGS += -c $(MOZDEVSCRIPT_DIR)
endif
ifdef DEBIAN_TAG
@@ -62,12 +62,12 @@ $(error You must specify MOZCLIENT_PROJECTNAME)
endif
list-tags:
- perl $(MOZDEVSCRIPT_DIR)/mozclient.pl$(EXT) -l $(MOZCLIENT_PROJECTNAME)
+ perl $(MOZDEVSCRIPT_DIR)/mozclient.pl $(ARGS) -l $(MOZCLIENT_PROJECTNAME)
get-orig-source:
- perl $(MOZDEVSCRIPT_DIR)/mozclient.pl$(EXT) $(ARGS) $(MOZCLIENT_PROJECTNAME)
+ perl $(MOZDEVSCRIPT_DIR)/mozclient.pl $(ARGS) $(MOZCLIENT_PROJECTNAME)
mozclient-version:
- perl $(MOZDEVSCRIPT_DIR)/mozclient.pl$(EXT) -V $(MOZCLIENT_PROJECTNAME)
+ perl $(MOZDEVSCRIPT_DIR)/mozclient.pl $(ARGS) -V $(MOZCLIENT_PROJECTNAME)
.PHONY: get-orig-source list-tags mozclient-version