[pastebot-cvs] pastebot Makefile,1.3,1.4
Status: Beta
Brought to you by:
rcaputo
|
From: <rc...@us...> - 2004-09-03 03:17:52
|
Update of /cvsroot/pastebot/pastebot In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv29174 Modified Files: Makefile Log Message: Removed an errant "&& \" from the end of one of the install directives. Thanks to buu for actually using the makefile and discovering the problem. It's kinda sad that he's a whiner, with such amazing initial feedback as "Someone fix pastebot =[". Luckily he responds with details when pressed, or this would probably never have been fixed. So in the end, go, buu! Index: Makefile =================================================================== RCS file: /cvsroot/pastebot/pastebot/Makefile,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** Makefile 13 Feb 2004 23:56:18 -0000 1.3 --- Makefile 3 Sep 2004 03:17:42 -0000 1.4 *************** *** 84,88 **** $(INSTALL) $(INSTALL_DATA) -d $(DATADIR) if [ ! -d $(DATADIR) ]; then exit 1; fi ! tar $(TAR_OPT_EX) -cf - * | (cd $(DATADIR); tar -xf -) && \ install-bin: --- 84,88 ---- $(INSTALL) $(INSTALL_DATA) -d $(DATADIR) if [ ! -d $(DATADIR) ]; then exit 1; fi ! tar $(TAR_OPT_EX) -cf - * | (cd $(DATADIR); tar -xf -) install-bin: |