/hg/icedtea: Don't hide errors in statement sequences building t...
doko at icedtea.classpath.org
doko at icedtea.classpath.org
Thu Jan 21 07:27:59 PST 2010
changeset b508e729d94a in /hg/icedtea
details: http://icedtea.classpath.org/hg/icedtea?cmd=changeset;node=b508e729d94a
author: doko at ubuntu.com
date: Thu Jan 21 16:26:57 2010 +0100
Don't hide errors in statement sequences building the NPPlugin
2010-01-21 Matthias Klose <doko at ubuntu.com>
* Makefile.am: Don't hide errors in statement sequences
building the NPPlugin. Use ICEDTEA_REV to defined
PLUGIN_VERSION.
diffstat:
2 files changed, 10 insertions(+), 12 deletions(-)
ChangeLog | 5 +++++
Makefile.am | 17 +++++------------
diffs (52 lines):
diff -r fadd1b656c20 -r b508e729d94a ChangeLog
--- a/ChangeLog Tue Jan 19 14:56:40 2010 -0500
+++ b/ChangeLog Thu Jan 21 16:26:57 2010 +0100
@@ -1,3 +1,8 @@ 2010-01-19 Man Lung Wong <mwong at redhat.
+2010-01-21 Matthias Klose <doko at ubuntu.com>
+
+ * Makefile.am: Don't hide errors in statement sequences building
+ the NPPlugin. Use ICEDTEA_REV to defined PLUGIN_VERSION.
+
2010-01-19 Man Lung Wong <mwong at redhat.com>
* rt/net/sourceforge/jnlp/JNLPFile.java
diff -r fadd1b656c20 -r b508e729d94a Makefile.am
--- a/Makefile.am Tue Jan 19 14:56:40 2010 -0500
+++ b/Makefile.am Thu Jan 21 16:26:57 2010 +0100
@@ -1964,31 +1964,24 @@ NPPLUGIN_OBJECTS=IcedTeaNPPlugin.o IcedT
IcedTeaPluginUtils.o
$(addprefix $(NPPLUGIN_DIR)/,$(NPPLUGIN_OBJECTS)): $(addprefix $(NPPLUGIN_DIR)/,$(NPPLUGIN_SRC))
- cd $(PLUGIN_DIR); \
- if [ -e $(abs_top_srcdir)/.hg ] && which $(HG) >/dev/null; then \
- revision="-r`(cd $(abs_top_srcdir); $(HG) tip --template '{rev}')`" ; \
- fi ; \
- if [ -n "$(PKGVERSION)" ]; then plugin_version=" ($(PKGVERSION))"; fi; \
- plugin_version=" $(PACKAGE_VERSION)$$revision$$plugin_version"; \
+ cd $(PLUGIN_DIR) && \
$(CXX) $(CXXFLAGS) \
-DPACKAGE_VERSION="\"$(PACKAGE_VERSION)\"" \
- -DPLUGIN_VERSION="\"$$plugin_version\"" \
+ -DPLUGIN_VERSION="\"$(PACKAGE_VERSION)$(ICEDTEA_REV)\"" \
-DMOZILLA_VERSION_COLLAPSED="$(MOZILLA_VERSION_COLLAPSED)" \
$(GLIB_CFLAGS) \
$(GTK_CFLAGS) \
$(MOZILLA_CFLAGS) \
- -fPIC -c $(NPPLUGIN_SRC); \
- cd ../
+ -fPIC -c $(NPPLUGIN_SRC)
$(NPPLUGIN_DIR)/IcedTeaNPPlugin.so: $(addprefix $(NPPLUGIN_DIR)/,$(NPPLUGIN_OBJECTS))
- cd $(PLUGIN_DIR); \
+ cd $(PLUGIN_DIR) && \
$(CXX) $(CXXFLAGS) \
$(NPPLUGIN_OBJECTS) \
$(GLIB_LIBS) \
$(GTK_LIBS) \
$(MOZILLA_LIBS)\
- -shared -o $@ \
- cd ../
+ -shared -o $@
stamps/icedtea-npplugin: $(NPPLUGIN_DIR)/IcedTeaNPPlugin.so
touch stamps/icedtea-npplugin
More information about the distro-pkg-dev
mailing list