Skip to content
Snippets Groups Projects
Commit 65996c37 authored by Claus-Justus Heine's avatar Claus-Justus Heine
Browse files

Delete backup and lock-files in distdir
parent 5fee2b30
No related branches found
No related tags found
No related merge requests found
......@@ -103,8 +103,12 @@ dist-hook:
rm -rf `find $(distdir) -name .svn -a -type d`
@echo Deleting CVS directories in $(distdir)
rm -rf `find $(distdir) -name CVS`
@echo Deleting .cvsignore file in $(distdir)
@echo Deleting .cvsignore files in $(distdir)
rm -f `find $(distdir) -name '.cvsignore'`
@echo Deleting backup files in $(distdir)
rm -f `find $(distdir) -name '*~'`
@echo Deleting stale lock-files in $(distdir)
rm -f `find $(distdir) -name '.#*'`
#
# NOTE: you better have GRAPE installed properly before doing this.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment