On Tuesday 2009-01-20 17:30, Bart De Schuymer wrote: > > +dnl Allows compiling the library with kernel include headers not located > +dnl at /usr/include > +AC_ARG_WITH([kernel-includes], > + [AS_HELP_STRING([--with-kernel-includes=PATH], > + [Path to kernel source include files @<:@default=/usr/include@:>@])], > + [ > + if test x$withval = xyes -o x$withval = x ; then > + AC_MSG_ERROR(--with-kernel-includes must be given the path to your > kernel source include files.) > + fi > + if ! test -d $withval ; then I would say this should be if test ! -d "$withval" similarly below and for the other patches. > + if ! test -d $withval/linux ; then > + if ! test -r $withval/linux ; then -- To unsubscribe from this list: send the line "unsubscribe netfilter-devel" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html