summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorIan Romanick <[email protected]>2011-07-25 19:47:25 -0700
committerIan Romanick <[email protected]>2011-07-25 19:47:38 -0700
commit929b3cc9b55032ab911ff30232e5685816262163 (patch)
tree56bcfc388d4e121777a619bc4627cd225384d50d /Makefile
parent7e4e5b0b754284eb1447e851a3ff150a47688db4 (diff)
mesa: Use --dereference to avoid symlinks in tarballs
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index cea0923a1ff..2af9374d916 100644
--- a/Makefile
+++ b/Makefile
@@ -481,13 +481,13 @@ rm_config: parsers
rm -f configs/autoconf
$(LIB_NAME).tar: rm_config
- cd .. ; tar -cf $(DIRECTORY)/$(LIB_NAME).tar $(LIB_FILES)
+ cd .. ; tar --dereference -cf $(DIRECTORY)/$(LIB_NAME).tar $(LIB_FILES)
$(LIB_NAME).tar.gz: $(LIB_NAME).tar
gzip --stdout --best $(LIB_NAME).tar > $(LIB_NAME).tar.gz
$(GLUT_NAME).tar:
- cd .. ; tar -cf $(DIRECTORY)/$(GLUT_NAME).tar $(GLUT_FILES)
+ cd .. ; tar --dereference -cf $(DIRECTORY)/$(GLUT_NAME).tar $(GLUT_FILES)
$(GLUT_NAME).tar.gz: $(GLUT_NAME).tar
gzip --stdout --best $(GLUT_NAME).tar > $(GLUT_NAME).tar.gz