Repository: https://svn.lrde.epita.fr/svn/xrm
ChangeLog: 2006-12-03 SIGOURE Benoit sigoure.benoit@lrde.epita.fr
Fix dist. * Makefile.am: Use xargs instead of -exec because -exec doesn't work (find tries to recurse in the .svn folders whereas they've been removed).
Makefile.am | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-)
Index: Makefile.am =================================================================== --- Makefile.am (revision 92) +++ Makefile.am (working copy) @@ -5,7 +5,7 @@ ## Mail sigoure.benoit@lrde.epita.fr ## ## Started on Thu Apr 27 16:22:46 2006 SIGOURE Benoit -## Last update Sun Aug 13 19:20:23 2006 SIGOURE Benoit +## Last update Sun Dec 3 14:38:45 2006 SIGOURE Benoit ##
include $(top_srcdir)/config/toplevel.mk @@ -26,4 +26,4 @@
# Remove the .svn folders included in the tarball dist-hook: - find $(distdir) -type d -name '.svn' -exec rm -rf {} ; + find $(distdir) -type d -name '.svn' | xargs rm -rf