Update of /cvsroot/nice/Nice/distrib
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv32003/distrib
Modified Files:
Makefile
Log Message:
Avoid out-of-order options for tar, since those are not supported by all versions.
Index: Makefile
===================================================================
RCS file: /cvsroot/nice/Nice/distrib/Makefile,v
retrieving revision 1.19
retrieving revision 1.20
diff -C2 -d -r1.19 -r1.20
*** Makefile 7 Jun 2005 10:10:39 -0000 1.19
--- Makefile 26 Jan 2006 13:07:43 -0000 1.20
***************
*** 60,64 ****
cat $(BUILDROOT)/lib/emacs/nice-startup.el \
>>${CURDIR}/tmp/$(BUILDROOT)/share/emacs/site-lisp/nice/nice-startup.el
! cd tmp && tar -czf ../${TARFILE} $(BUILDROOT) --owner=0 --group=0
.PHONY: rpm
--- 60,64 ----
cat $(BUILDROOT)/lib/emacs/nice-startup.el \
>>${CURDIR}/tmp/$(BUILDROOT)/share/emacs/site-lisp/nice/nice-startup.el
! cd tmp && tar --owner=0 --group=0 -czf ../${TARFILE} $(BUILDROOT)
.PHONY: rpm
|