summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorlevine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1997-05-15 13:54:16 +0000
committerlevine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1997-05-15 13:54:16 +0000
commit98ac8062afe15f5f1943fe1386f066934017e33e (patch)
tree7b88b737c4b65e5375e26e9a43824814526abc3d /Makefile
parent4f30bea198654c2a490b6b6da529563d001a3743 (diff)
downloadATCD-98ac8062afe15f5f1943fe1386f066934017e33e.tar.gz
(release, cleanrelease): use -prune option to find instead of filtering its output
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index ab5c128fc79..dffba6ec533 100644
--- a/Makefile
+++ b/Makefile
@@ -106,14 +106,14 @@ endif
cleanrelease:
($(TIMESTAMP)make realclean; cd ..;
- find $(RELEASE_FILES) -print | egrep -v /CVS | cpio -o -H tar | gzip -9 > ACE.tar.gz; \
+ find $(RELEASE_FILES) -name CVS -prune -o -print | cpio -o -H tar | gzip -9 > ACE.tar.gz; \
chmod a+r ACE.tar.gz; mv ACE.tar.gz ./ACE_wrappers/)
release:
($(TIMESTAMP)cd ..; \
- find $(RELEASE_FILES) -print | egrep -v /CVS | cpio -o -H tar | gzip -9 > ACE.tar.gz; \
+ find $(RELEASE_FILES) -name CVS -prune -o -print | cpio -o -H tar | gzip -9 > ACE.tar.gz; \
chmod a+r ACE.tar.gz; mv ACE.tar.gz ./ACE_wrappers/)
(cd ..; \
- find $(RELEASE_LIB_FILES) -print | egrep -v /CVS | cpio -o -H tar | gzip -9 > ACE-lib.tar.gz; \
+ find $(RELEASE_LIB_FILES) -name CVS -prune -o -print | cpio -o -H tar | gzip -9 > ACE-lib.tar.gz; \
chmod a+r ACE-lib.tar.gz; mv ACE-lib.tar.gz ./ACE_wrappers/)