[med-svn] r18542 - in trunk/packages/trimmomatic/trunk/debian: . bin
Andreas Tille
tille at moszumanska.debian.org
Tue Dec 16 15:09:29 UTC 2014
Author: tille
Date: 2014-12-16 15:09:29 +0000 (Tue, 16 Dec 2014)
New Revision: 18542
Modified:
trunk/packages/trimmomatic/trunk/debian/bin/TrimmomaticPE
trunk/packages/trimmomatic/trunk/debian/changelog
Log:
Fix bashism in wrapper script
Modified: trunk/packages/trimmomatic/trunk/debian/bin/TrimmomaticPE
===================================================================
--- trunk/packages/trimmomatic/trunk/debian/bin/TrimmomaticPE 2014-12-15 21:22:20 UTC (rev 18541)
+++ trunk/packages/trimmomatic/trunk/debian/bin/TrimmomaticPE 2014-12-16 15:09:29 UTC (rev 18542)
@@ -1,6 +1,6 @@
#!/bin/sh
PKGNAME=trimmomatic
-FUNCNAME=`basename $0`
+FUNCTIONTOCALL=`basename $0`
JARDIR=/usr/share/java
JARVERSION=`ls $JARDIR/$PKGNAME-*.jar | sort | tail -n 1`
if [ "" = "$JARVERSION" ] ; then
@@ -8,4 +8,4 @@
exit 1
fi
-java -classpath "$JARVERSION" org.usadellab.$PKGNAME.$FUNCNAME $@
+java -classpath "$JARVERSION" org.usadellab.$PKGNAME.$FUNCTIONTOCALL $@
Modified: trunk/packages/trimmomatic/trunk/debian/changelog
===================================================================
--- trunk/packages/trimmomatic/trunk/debian/changelog 2014-12-15 21:22:20 UTC (rev 18541)
+++ trunk/packages/trimmomatic/trunk/debian/changelog 2014-12-16 15:09:29 UTC (rev 18542)
@@ -1,3 +1,10 @@
+trimmomatic (0.32+dfsg-2) unstable; urgency=medium
+
+ * Fix bashism in wrapper script
+ Closes: #772392
+
+ -- Andreas Tille <tille at debian.org> Tue, 16 Dec 2014 15:59:41 +0100
+
trimmomatic (0.32+dfsg-1) unstable; urgency=low
* debian/copyright: Fix contact and copyright
More information about the debian-med-commit
mailing list