From: Eric D. <eri...@ja...> - 2001-03-16 18:58:36
|
In my efforts to try to get Bender to update via cvs, I have noticed that there are some incompatibility problems. Lines 145-147 $(CP) -ruv plugins/* $(SLASH_PREFIX)/plugins/ # Now all other themes $(CP) -ruv themes/* $(SLASH_PREFIX)/themes FreeBSD 4.2's cp command has no provisions for the -u switch, and fails. I also was having problems with lines 131-133, if [ -f "$$f.bak" ]; then \ rm $$f; mv $$f.bak $$f; \ fi; \ Which would error out on a make install, removing these lines made things better, but then I encountered the cp -ruv thing....... |