[pkg-java] r11801 - in trunk/maven-repo-helper: debian src/main/bin

Damien Raude-Morvan drazzib at alioth.debian.org
Tue Mar 2 20:10:03 UTC 2010


Author: drazzib
Date: 2010-03-02 20:09:58 +0000 (Tue, 02 Mar 2010)
New Revision: 11801

Modified:
   trunk/maven-repo-helper/debian/changelog
   trunk/maven-repo-helper/src/main/bin/mh_installpoms
Log:
mh_installpoms: Fix call to mh_installpom.
Use MH_ARGS instead of (non-existing) MH_OPTS variable.

Modified: trunk/maven-repo-helper/debian/changelog
===================================================================
--- trunk/maven-repo-helper/debian/changelog	2010-03-01 23:26:58 UTC (rev 11800)
+++ trunk/maven-repo-helper/debian/changelog	2010-03-02 20:09:58 UTC (rev 11801)
@@ -1,3 +1,10 @@
+maven-repo-helper (1.0.3) unstable; urgency=low
+
+  * mh_installpoms: Fix call to mh_installpom.
+    Use MH_ARGS instead of (non-existing) MH_OPTS variable.
+
+ -- Damien Raude-Morvan <drazzib at debian.org>  Tue, 02 Mar 2010 21:09:04 +0100
+
 maven-repo-helper (1.0.2) unstable; urgency=low
 
   * A leak of environment variables activated the no-rules option

Modified: trunk/maven-repo-helper/src/main/bin/mh_installpoms
===================================================================
--- trunk/maven-repo-helper/src/main/bin/mh_installpoms	2010-03-01 23:26:58 UTC (rev 11800)
+++ trunk/maven-repo-helper/src/main/bin/mh_installpoms	2010-03-02 20:09:58 UTC (rev 11801)
@@ -49,8 +49,8 @@
 cat debian/$PACKAGE.poms | while read POM OPT1 OPT2; do
     if [ ! -z "$POM" ]; then
         if [[ ! -z "$VERBOSE" || "$DH_VERBOSE" = "1" ]]; then
-	        echo -e "\tmh_installpom $DH_OPTS $MH_OPTS $OPT1 $OPT2 $POM"
+	        echo -e "\tmh_installpom $DH_OPTS $MH_ARGS $OPT1 $OPT2 $POM"
 		fi
-        mh_installpom $DH_OPTS $MH_OPTS $OPT1 $OPT2 $POM
+        mh_installpom $DH_OPTS $MH_ARGS $OPT1 $OPT2 $POM
     fi
 done




More information about the pkg-java-commits mailing list