[Lsb-messages] /var/www/bzr/lsb/devel/app-checker r37: Fix deprecated use of qw() (bug 3490)

Stew Benedict stewb at linux-foundation.org
Thu May 24 16:18:19 UTC 2012


------------------------------------------------------------
revno: 37
committer: Stew Benedict <stewb at linux-foundation.org>
branch nick: app-checker
timestamp: Thu 2012-05-24 12:18:19 -0400
message:
  Fix deprecated use of qw() (bug 3490)
modified:
  bin/app-checker-start.pl
  package/Makefile
-------------- next part --------------
=== modified file 'bin/app-checker-start.pl'
--- a/bin/app-checker-start.pl	2010-03-15 18:11:53 +0000
+++ b/bin/app-checker-start.pl	2012-05-24 16:18:19 +0000
@@ -114,7 +114,7 @@
 }
 else {
 	# Try to find a browser by it's name.
-	foreach my $br_name qw(opera /usr/bin/mozilla-firefox firefox konqueror epiphany galeon mozilla) {
+	foreach my $br_name (qw(opera /usr/bin/mozilla-firefox firefox konqueror epiphany galeon mozilla)) {
 		if (system("which $br_name >/dev/null 2>&1") == 0) {
 			system("$br_name \"http://127.0.0.1:$port/\" >/dev/null 2>&1 &");
 			$browser_not_found = 0;

=== modified file 'package/Makefile'
--- a/package/Makefile	2012-03-30 19:25:49 +0000
+++ b/package/Makefile	2012-05-24 16:18:19 +0000
@@ -1,7 +1,7 @@
 BRANCH ?= lsb
 PACKAGE = $(BRANCH)-app-checker
 # LSB constants
-VERSION_LSB = 4.1.0.2
+VERSION_LSB = 4.1.0.3
 RELEASE_LSB = 1
 STD_VERSION_LSB = 4.1
 SPEC_VERSION_LSB = 4.1



More information about the lsb-messages mailing list