Re: problem with conditionals and \ separator in SOURCES

2001-05-06 Thread Tom Tromey
> "Lorenzo" == Lorenzo Bettini <[EMAIL PROTECTED]> writes: >> Automake 1.4 didn't try to deal with DOS-style line endings correctly. Lorenzo> You're right: line endings are to blame... the funny thing is Lorenzo> that I got the sources from a Linux CVS server, and the Lorenzo> uncorrect line

Re: problem with conditionals and \ separator in SOURCES

2001-04-18 Thread Lorenzo Bettini
Tim Van Holder wrote: > > > You're right: line endings are to blame... the funny thing is that I got > > the sources from a Linux CVS server, and the uncorrect line endings seem > > to have been added during the dowloading... (actually I used WinCVS, so > > this is quite likely). > > If you're u

RE: problem with conditionals and \ separator in SOURCES

2001-04-11 Thread Tim Van Holder
> You're right: line endings are to blame... the funny thing is that I got > the sources from a Linux CVS server, and the uncorrect line endings seem > to have been added during the dowloading... (actually I used WinCVS, so > this is quite likely). If you're using WinCVS and working with Unix/Lin

Re: problem with conditionals and \ separator in SOURCES

2001-04-10 Thread Lorenzo Bettini
Tom Tromey wrote: > > > "Tim" == Tim Van Holder <[EMAIL PROTECTED]> writes: > > >> Am I doing something wrong? > >> Notice that this problem only takes place with cygwin > > Tim> Might be an EOL issue; sed is notorious for not recognizing a trailing \ > Tim> in a DOS text file (it sees \ +

Re: problem with conditionals and \ separator in SOURCES

2001-04-10 Thread Tom Tromey
> "Tim" == Tim Van Holder <[EMAIL PROTECTED]> writes: >> Am I doing something wrong? >> Notice that this problem only takes place with cygwin Tim> Might be an EOL issue; sed is notorious for not recognizing a trailing \ Tim> in a DOS text file (it sees \ + CR + NL). Tim> Try converting the f

RE: problem with conditionals and \ separator in SOURCES

2001-04-10 Thread Tim Van Holder
> cmdline.c \ > main.cc errors.cc stringtable.cc tables.cc nodevis.cc \ > > and the problem seems to be that \ in myprog_SOURCES is not recognized! > > Am I doing something wrong? > Notice that this problem only takes place with cygwin > Might be an EOL issue;

problem with conditionals and \ separator in SOURCES

2001-04-10 Thread Lorenzo Bettini
Hi In configure.in I have these lines AC_PATH_PROGS(GENGETOPT, gengetopt) AM_CONDITIONAL(NO_GENGETOPT, test -z "$ac_cv_path_GENGETOPT" ) and in src/Makefile I have SUFFIXES = .ggo if NO_GENGETOPT .ggo.c: touch $@ else .ggo.c: $(GENGETOPT) --input $< --unamed-opts endif