From: Andreas A. <a.a...@th...> - 2001-08-17 15:27:28
|
Hi Bruce, > Andi, > That's great I assume that fixed the problem with the extra r in > the file name, Yeeep. > Building da site > in user > in user/htdocs > in base > in core > in bldr > in init > c:/cygwin/home/pcguest/cvs/r2/binarycloud/base/utils/processprepen > d.php: not fou Hmm I got that kind of error under linux too after I changed the file over the network. The problem was that the file was not executable (smb resetted the x flag) and make coud not execute it. I guess thats a win problem caus win does only execute files with .exe .com or .bat extension, while linux does execute files with the x flag not matter how the extension is (in this case .php). try to replace the following line in Makefile.in PROCESSPREPEND = $(TOOLS_DIR)/processprepend.php with PROCESSPREPEND = "sh $(TOOLS_DIR)/processprepend.php" I'm not sure if this would work, just give it a try. Andi |