Prof A Olowofoyeku (The African Chief) wrote:
I wrote:
Hi Waldek
Something is broken under Win32 (compiling with msys environment). This is what I have noticed so far;
- rts-config.inc is not installed when you run 'make pascal.install' 2.
make-lang.inc has "@true" in it. This results in a "command not found" error
I have found the issues (under Win32, gcc-3.4.5 backend sources);
- "@true" causes an error in 'pascal.install' and 'pascal.bindist', so
I have removed it.
The line is now:
echo "pascal.install done" ; @true
Try:
echo "pascal.install done" ; true
that is remove '@' sign. Note: both lines start from a tab.