From: Bdale Garbee Date: Tue, 8 Jun 2010 19:41:17 +0000 (-0600) Subject: don't whine when following symlinks X-Git-Tag: debian/3.12-3~1 X-Git-Url: https://git.gag.com/?a=commitdiff_plain;h=81e9f7ea7b0bf932673ecf206cc913dd37ce426b;p=debian%2Felilo don't whine when following symlinks --- diff --git a/debian/changelog b/debian/changelog index 8ed695d..3207d0b 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,6 +1,9 @@ elilo (3.12-3) UNRELEASED; urgency=low - * pass -m32 when building 32 bit version on 64 bit host, closes: #574713 + * fix paths and options to build both 32 and 64 bit versions on either + flavor of build host, closes: #574713 + * don't generate noise when following symlink since that's now the normal + situation, closes: #581068 -- Bdale Garbee Wed, 12 May 2010 11:20:20 -0600 diff --git a/debian/elilo.sh b/debian/elilo.sh index 46cfb22..9857ff2 100644 --- a/debian/elilo.sh +++ b/debian/elilo.sh @@ -215,7 +215,6 @@ checkconf() if [ -L "$boot" ] ; then oldboot=$boot boot=$(readlink -f $oldboot) - echo 1>&2 "$PRG: $oldboot is a symbolic link, using $boot instead" fi if [ ! -e "$boot" ] ; then echo 1>&2 "$PRG: $boot: No such file or directory"