summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBart De Schuymer <bdschuym@pandora.be>2010-03-08 15:51:15 +0000
committerBart De Schuymer <bdschuym@pandora.be>2010-03-08 15:51:15 +0000
commitff6c1866de5c1bdc50bad47af4a374ac9ea6f90a (patch)
tree721220e6a471c5bf0a296949a6a3a99c6c4569d5
parent9b19e3c337f5021a314b3f7df2ee77ad58b23436 (diff)
touch each file and set the permissions for a release
-rw-r--r--userspace/arptables/Makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/userspace/arptables/Makefile b/userspace/arptables/Makefile
index 4222a21..d4d420f 100644
--- a/userspace/arptables/Makefile
+++ b/userspace/arptables/Makefile
@@ -71,4 +71,5 @@ CVSDIRS:=CVS extensions/CVS libarptc/CVS include/CVS include/libarptc/CVS includ
release:
rm -rf $(CVSDIRS)
make clean
- cd ..;tar -c $(DIR) | gzip >$(DIR).tar.gz
+ cd ..;find $(DIR) -exec touch {} \;;find $(DIR) -exec chmod o-r,g-r,o-w,g-w,o-x,g-x {} \;;tar -pc $(DIR) | gzip >$(DIR).tar.gz
+