diff options
author | Brian Paul <brian.paul@tungstengraphics.com> | 2000-03-23 00:14:28 +0000 |
---|---|---|
committer | Brian Paul <brian.paul@tungstengraphics.com> | 2000-03-23 00:14:28 +0000 |
commit | 1b539ed6134832c2e5193f4c0c38344d1eca1bc6 (patch) | |
tree | 0b24b1dea89ea23e7db15a932c559d4700cddafb | |
parent | 905ad56487ffe8a11df4309485f892a931fbf34b (diff) |
exclude CVS dirs from tar filemesa_3_2_beta_1
-rw-r--r-- | Makefile.X11 | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Makefile.X11 b/Makefile.X11 index e40dad71fa..9aab491e4d 100644 --- a/Makefile.X11 +++ b/Makefile.X11 @@ -1,4 +1,4 @@ -# $Id: Makefile.X11,v 1.12.2.7 2000/03/22 23:48:00 brianp Exp $ +# $Id: Makefile.X11,v 1.12.2.8 2000/03/23 00:14:28 brianp Exp $ # Mesa 3-D graphics library # Version: 3.2 @@ -538,13 +538,13 @@ DEMO_FILES = \ lib_tar: cd .. ; \ - tar -cvf $(LIB_NAME).tar $(LIB_FILES) ; \ + tar --exclude CVS -c -v -f $(LIB_NAME).tar $(LIB_FILES) ; \ gzip $(LIB_NAME).tar ; \ mv $(LIB_NAME).tar.gz $(DIRECTORY) demo_tar: cd .. ; \ - tar -cvf $(DEMO_NAME).tar $(DEMO_FILES) ; \ + tar --exclude CVS -c -v -f $(DEMO_NAME).tar $(DEMO_FILES) ; \ gzip $(DEMO_NAME).tar ; \ mv $(DEMO_NAME).tar.gz $(DIRECTORY) |