From 07ee839b3a77461c10b8313b5a8371de00748af4 Mon Sep 17 00:00:00 2001 From: Michael Prokop Date: Mon, 17 Aug 2009 09:53:19 +0200 Subject: [PATCH] Fix syntax error in checkbootparam() --- autoconfig.functions | 2 +- debian/changelog | 6 ++++++ 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/autoconfig.functions b/autoconfig.functions index d90e051..b8579b7 100755 --- a/autoconfig.functions +++ b/autoconfig.functions @@ -60,7 +60,7 @@ getbootparam(){ # Check boot commandline for specified option checkbootparam(){ - [ -n "$1" ] || { echo "Error: missing argument to checkbootparam()" ; return 1 } + [ -n "$1" ] || ( echo "Error: missing argument to checkbootparam()" ; return 1 ) # make sure we match beginning and end of line as well # but don't match 'vg' if we want to check for 'vga' if echo "$CMDLINE" | grep -qw "$1" ; then diff --git a/debian/changelog b/debian/changelog index a6ea806..6e210eb 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +grml-autoconfig (0.8.26) unstable; urgency=low + + * Fix syntax error in checkbootparam(). + + -- Michael Prokop Mon, 17 Aug 2009 09:52:59 +0200 + grml-autoconfig (0.8.25) unstable; urgency=low * config_finddcsdir(): Use the correct device for GRMLCFG. -- 2.1.4