diff options
author | Thierry Vignaud <tv@mandriva.org> | 2008-09-17 15:09:26 +0000 |
---|---|---|
committer | Thierry Vignaud <tv@mandriva.org> | 2008-09-17 15:09:26 +0000 |
commit | bc1d1a4f9f875dbf870b7695df0f2242459147ec (patch) | |
tree | 54e568d765d50be5fcdab19d50536896feb3ef08 /Makefile | |
parent | df363b2fa0dda91781dec3540f4ea3501c6ed280 (diff) | |
download | drakpxelinux-bc1d1a4f9f875dbf870b7695df0f2242459147ec.tar drakpxelinux-bc1d1a4f9f875dbf870b7695df0f2242459147ec.tar.gz drakpxelinux-bc1d1a4f9f875dbf870b7695df0f2242459147ec.tar.bz2 drakpxelinux-bc1d1a4f9f875dbf870b7695df0f2242459147ec.tar.xz drakpxelinux-bc1d1a4f9f875dbf870b7695df0f2242459147ec.zip |
(tar) fix using --exclude-vcs option in order not to create a
'--exclude-vcs' file ... as nicely shown by
"cp: unrecognized option '--exclude-vcs'" error message
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -48,7 +48,7 @@ localcopy: tar: mkdir ../$(PACKAGE)-$(VERSION) cp -a * ../$(PACKAGE)-$(VERSION) - tar cfj --exclude-vcs $(PACKAGE)-$(VERSION).tar.bz2 ../$(PACKAGE)-$(VERSION) + tar cfj $(PACKAGE)-$(VERSION).tar.bz2 --exclude-vcs ../$(PACKAGE)-$(VERSION) rm -rf ../$(PACKAGE)-$(VERSION) buildrpm: |