This is the mail archive of the cygwin@cygwin.com mailing list for the Cygwin project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

RE: cygwin wrapper aclocal doesn't handle multiple -I options ?


If I alter 
  /usr/bin/aclocal
from this

    -I )
       test $# = 1 && eval "$exit_missing_arg"
       shift
       opt_i="-I $1"
       shift ;;

to this

    -I )
       test $# = 1 && eval "$exit_missing_arg"
       shift
       opt_i=$opt_i" -I $1"
       shift ;;


then my use of multiple includes seems to work correctly with aclocal


Cordially,

Perry


--
Unsubscribe info:      http://cygwin.com/ml/#unsubscribe-simple
Bug reporting:         http://cygwin.com/bugs.html
Documentation:         http://cygwin.com/docs.html
FAQ:                   http://cygwin.com/faq/


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]