Re: RLIM_INFINITY inconsistency between archs

From: Jamie Lokier (lk@tantalophile.demon.co.uk)
Date: Thu Jul 27 2000 - 16:19:52 EDT

  • Next message: Ulrich Drepper: "Re: sysconf (was Re: RLIM_INFINITY inconsistency between archs)"

    Theodore Y. Ts'o wrote:
    > + mkdir -p $$MODLIB; \
    > + rm -f $$MODLIB/build; \
    > + ln -s `pwd` $$MODLIB/build; \

    If $$MODLIB already exists and is a directory, you'll be creating a
    link inside that directory which is probably not what you want.
    Perhaps:

      test -e $$MODLIB/build || ln -s `pwd` $$MODLIB/build

    -- Jamie

    -
    To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
    the body of a message to majordomo@vger.rutgers.edu
    Please read the FAQ at http://www.tux.org/lkml/



    This archive was generated by hypermail 2b29 : Thu Jul 27 2000 - 16:24:19 EDT