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....... |
From: Ask S. G. <cl...@sl...> - 2001-03-19 18:54:38
|
On Fri, 16 Mar 2001 11:02:07 -0800, Eric Dannewitz said: > 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....... > And this is another reason I wish I had a FreeBSD box or even a Solaris box to test these things. Eric, Thanks for the bug reports on the Makefile. I'll just have to bite the bullet and make that section a little more intelligent. - Cliff |
From: Eric D. <eri...@ja...> - 2001-03-19 19:01:29
|
Yeah. No problem. Though I notice that if lines 131-133 (the rm thing), and omit the -u flag from lines 145-147, I get .bak files installed in the /usr/local/slash directories. So, I'll have like a admin.pl.bak and an admin.pl. Kind of annoying, but not a huge deal............ Ask Slashdot Guy wrote: > On Fri, 16 Mar 2001 11:02:07 -0800, Eric Dannewitz said: > > > 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....... > > > > And this is another reason I wish I had a FreeBSD box or even a Solaris box to > test these things. > > Eric, > > Thanks for the bug reports on the Makefile. I'll just have to bite the bullet > and make that section a little more intelligent. > > - Cliff > > _______________________________________________ > Slashcode-development mailing list > Sla...@li... > http://lists.sourceforge.net/lists/listinfo/slashcode-development -- Back up my hard disk? I can't find the reverse switch! Eric Dannewitz - Adventurer, saxophonist, good-timer (crook? quite possibly), clarinetist, manic self-publicist, part-time flautist(flutist?), macintosher, and often thought to be completely out to lunch. http://www.jazz-sax.com |
From: Blake D. <bl...@ar...> - 2001-03-19 21:54:42
|
Would it help if I allowed you to use my FBSD box? Blake Day Artistry Studios bl...@ar... -----Original Message----- From: sla...@li... [mailto:sla...@li...]On Behalf Of Ask Slashdot Guy Sent: Monday, March 19, 2001 2:10 PM To: sla...@li... Subject: Re: [Slashcode-development] Makefile problems on FreeBSD On Fri, 16 Mar 2001 11:02:07 -0800, Eric Dannewitz said: > 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....... > And this is another reason I wish I had a FreeBSD box or even a Solaris box to test these things. Eric, Thanks for the bug reports on the Makefile. I'll just have to bite the bullet and make that section a little more intelligent. - Cliff _______________________________________________ Slashcode-development mailing list Sla...@li... http://lists.sourceforge.net/lists/listinfo/slashcode-development |