On Wed, Oct 31, 2001 at 12:38:51PM +0000, Ignasi Villagrasa wrote: >I have a problem running a makefile. An error appears as follows: > >S:\client\src>make -f mcyg32 >rm -f cmpr_cyg.lk1 >dlltool --dllname mcodbcnt.dll --def libmcodbcnt.def --output-lib >libmcodbcnt.a >-k >c++.exe @cmpr_cyg.lk1 >c++.exe: @cmpr_cyg.lk1: No such file or directory >c++.exe: No input files >make: *** [/client/mcc_cyg/cmpr/cmprnt.exe] Error 1 > >and if I try to run again from the command line, it works properly. > >S:\client\src>c++.exe @cmpr_cyg.lk1 > >S:\client\src> > >Why don't I find cmpr_cyg.lk1 file from make utility ?
'@' file parsing is only available when a cygwin program is invoked from a command shell. Otherwise use UNIX-style methods for putting command line arguments in a file, e.g., c++.exe `cat cmpr_cyg.lk1` cgf -- 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/
