On Jun 19, 2004, at 1:13 AM, Koen van der Drift wrote:

CompileScript: <<
        cd src/
         make
<<

This gives the following error:

cd src/
Can't exec "cd": No such file or directory at /sw/lib/perl5/Fink/Services.pm line 403.


The CompileScript is executed 'line by line'.
Thus either use :
CompileScript: cd src ; make

Or :

CompileScript: <<
#!/bin/sh
 cd src
 make
<<

Jean-Francois



-------------------------------------------------------
This SF.Net email is sponsored by The 2004 JavaOne(SM) Conference
Learn from the experts at JavaOne(SM), Sun's Worldwide Java Developer
Conference, June 28 - July 1 at the Moscone Center in San Francisco, CA
REGISTER AND SAVE! http://java.sun.com/javaone/sf Priority Code NWMGYKND
_______________________________________________
Fink-devel mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/fink-devel

Reply via email to