From: Andre P. <at...@us...> - 2004-05-18 03:05:16
|
Update of /cvsroot/hoc/hoc In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv7856 Modified Files: Makefile.in Log Message: Fixed dist_FILES Makefile variables to make it work with BSD's cp Fixed removal of CVS and *~ directories from distribution tarball Index: Makefile.in =================================================================== RCS file: /cvsroot/hoc/hoc/Makefile.in,v retrieving revision 1.5 retrieving revision 1.6 diff -u -d -r1.5 -r1.6 --- Makefile.in 18 May 2004 02:36:48 -0000 1.5 +++ Makefile.in 18 May 2004 03:05:02 -0000 1.6 @@ -27,7 +27,7 @@ README.txt \ aclocal.m4 \ autogen.sh \ - autotools/ \ + autotools \ config.mk.in \ configure \ configure.ac \ @@ -40,10 +40,10 @@ -test -d "$(dist_dir)" && rm -rf "$(dist_dir)" $(MAKE) dist-recursive for dir in $(all_SUBDIRS); do (cd $$dir; $(MAKE) dist-recursive); done - find "$(dist_dir)" -type d -name 'CVS' -delete - find "$(dist_dir)" -name '*~' -delete cp -HRp libffi-src "$(dist_dir)" rm -rf "$(dist_dir)"/libffi-src/build + find "$(dist_dir)" -type d -name 'CVS' -exec rm -rf '{}' ';' -prune + find "$(dist_dir)" -type d -name '*~' -exec rm -rf '{}' ';' -prune tar jcvf @abs_top_builddir@/hoc-@PACKAGE_VERSION@.tar.bz2 \ ./hoc-@PACKAGE_VERSION@ |