Christopher Gray, le Mon 03 Sep 2007 17:22:11 -0700, a écrit :
> if [ -x /bin/brltty -a -f /etc/brltty.conf ] then /bin/brltty fi
There are missing ';'s : it should read as
if [ -x /bin/brltty -a -f /etc/brltty.conf ]; then /bin/brltty ; fi
Samuel
___
[quoted lines by Samuel Thibault on 2007/09/04 at 10:04 +0200]
>> if [ -x /bin/brltty -a -f /etc/brltty.conf ] then /bin/brltty fi
>
>There are missing ';'s : it should read as
>
>if [ -x /bin/brltty -a -f /etc/brltty.conf ]; then /bin/brltty ; fi
Or an even shorter syntax:
[ -x /bin/brltty -a -
Hello Dave,
On Mon, Sep 03, 2007 at 07:55:56PM -0400, Dave Mielke wrote:
> I suspect this warning is given simply because it's customary to configure
> with
> --prefix=/usr, therefore people might tend to specify it out of habit.
of course, Fedora packages brltty with --prefix=/usr
--sysconfdir
[quoted lines by Stepan Kasal on 2007/09/04 at 14:02 +0200]
>of course, Fedora packages brltty with --prefix=/usr
>--sysconfdir=/etc, and such.
>
>Obviously, building under /usr/local is not an option; that has to be
>left empty for the users of Fedora.
>
>If that might present a problem to Orca u
Hello Dave,
I noticed that your aclocal.m4 conatains a macro
AC_DEFUN([BRLTTY_ARG_FEATURE], [dnl
AC_ARG_ENABLE([$1], BRLTTY_HELP_STRING([--$3-$1], [$2]), [], [enableval="$4"])
...
something with $enableval
...
])
I'd like to remind that the main variable used by
AC_ARG_ENABLE([foo], ... )
is
Hello,
On Tue, Sep 04, 2007 at 08:28:18AM -0400, Dave Mielke wrote:
> [quoted lines by Stepan Kasal on 2007/09/04 at 14:02 +0200]
> >of course, Fedora packages brltty with --prefix=/usr
> >--sysconfdir=/etc, and such.
...
> no, it's not a problem specific to Orca users. The default for brltty, at
[quoted lines by Stepan Kasal on 2007/09/04 at 16:09 +0200]
>sounds fair. Filed as
>https://bugzilla.redhat.com/show_bug.cgi?id=276181
Thank you.
I happened to be reading "man hier" earlier this evening, and it says that /bin
should contain commands needed to boot or repair the system, or whic
[quoted lines by Stepan Kasal on 2007/09/04 at 15:00 +0200]
>I'd like to remind that the main variable used by
> AC_ARG_ENABLE([foo], ... )
>is enable_foo. The variable `enableval' is only a helper variable
>guranteed to be available for the code in the third parameter.
I remember thinking abo