/hg/icedtea-web: IcedTea-Web Splashscreen allows zero or one hyp...
ldracz at icedtea.classpath.org
ldracz at icedtea.classpath.org
Fri Oct 3 18:20:47 UTC 2014
changeset 8071a44fe6de in /hg/icedtea-web
details: http://icedtea.classpath.org/hg/icedtea-web?cmd=changeset;node=8071a44fe6de
author: Lukasz Dracz <ldracz at redhat.com>
date: Fri Oct 03 14:20:40 2014 -0400
IcedTea-Web Splashscreen allows zero or one hyphens preceding headless option
2014-10-03 Lukasz Dracz <ldracz at redhat.com>
IcedTea-Web Splashscreen allows zero or one hyphens preceding headless option
* launcher/launchers.in: regex matching for headless
diffstat:
ChangeLog | 5 +++++
launcher/launchers.in | 2 +-
2 files changed, 6 insertions(+), 1 deletions(-)
diffs (24 lines):
diff -r 6d62f68fb037 -r 8071a44fe6de ChangeLog
--- a/ChangeLog Mon Sep 22 17:10:07 2014 +0200
+++ b/ChangeLog Fri Oct 03 14:20:40 2014 -0400
@@ -1,3 +1,8 @@
+2014-10-03 Lukasz Dracz <ldracz at redhat.com>
+
+ IcedTea-Web Splashscreen allows zero or one hyphens preceding headless option
+ * launcher/launchers.in: regex matching for headless
+
2014-09-22 Jiri Vanek <jvanek at redhat.com>
Preventing rare class cast exception in erroneous detached applets
diff -r 6d62f68fb037 -r 8071a44fe6de launcher/launchers.in
--- a/launcher/launchers.in Mon Sep 22 17:10:07 2014 +0200
+++ b/launcher/launchers.in Fri Oct 03 14:20:40 2014 -0400
@@ -53,7 +53,7 @@
*)
ARGS[$j]="$1"
j=$((j+1))
- if [ "$1" = "-headless" ] ; then
+ if [[ "$1" =~ ^[-]{0,1}headless ]] ; then
SPLASH="false"
fi
;;
More information about the distro-pkg-dev
mailing list