From: <sg...@us...> - 2003-12-10 19:45:23
|
Update of /cvsroot/libfunutil/libfunutil/toc/bin In directory sc8-pr-cvs1:/tmp/cvs-serv14493/toc/bin Modified Files: makedist mkdep.c relativePathToSharedMakefile Log Message: mass commit: fixes/changes from toc/s11n/cl trees. Index: makedist =================================================================== RCS file: /cvsroot/libfunutil/libfunutil/toc/bin/makedist,v retrieving revision 1.4 retrieving revision 1.5 diff -u -d -r1.4 -r1.5 --- makedist 31 Aug 2003 20:28:58 -0000 1.4 +++ makedist 10 Dec 2003 19:45:20 -0000 1.5 @@ -4,9 +4,10 @@ # # todo: add some wildcard support to the file lists. # -# sg...@us... +# st...@s1... # -# +# Note that is implicitely filters out some file names, +# to simplify use of the toc client-side install code. $verbose = 0; $dieonerror = 1; @@ -31,6 +32,8 @@ foreach $l (@list) { next if $l =~ /^#/; next if $l =~ m|^(.*/)?toc.q?make$|; + next if $l =~ m|\.o$|; + next if $l =~ m|.*/CVS(/.*)?|; chomp( $l ); next unless $l =~ /\w/; @@ -51,7 +54,7 @@ #print STDOUT "thelist=",join( "\n", @thelist ),"\n"; print "File count: ".@thelist."\n" if $verbose; -$tarargs = "--exclude='*.o' --exclude='CVS' --exclude='toc.make' --files-from=$tarfileslist"; +$tarargs = "--files-from=$tarfileslist"; execcmd( "tar cf - $tarargs | tar xf - -C \"$basename\"" ); @@ -64,7 +67,7 @@ # execcmd( "cd $basename; for x in \$(find . -type f); do md5sum \$x >> MD5SUMS.$basename; done" ); execcmd( "for x in \$(cat $tarfileslist); do md5sum \$x; done > $md5file" ) } else { - print STDERR "Warning: no md5sum found, so not including md5 info.\n"; + print STDERR "Warning: no md5sum binary found, so not including md5 info.\n"; } Index: mkdep.c =================================================================== RCS file: /cvsroot/libfunutil/libfunutil/toc/bin/mkdep.c,v retrieving revision 1.5 retrieving revision 1.6 diff -u -d -r1.5 -r1.6 --- mkdep.c 1 Sep 2003 00:18:58 -0000 1.5 +++ mkdep.c 10 Dec 2003 19:45:20 -0000 1.6 @@ -29,7 +29,7 @@ * defaults. Only -I is supported, no attempt is made to handle -idirafter, * -isystem, -I- etc. * - * Aug 2003: stephan beal <sg...@us...> + * Aug 2003: stephan beal <st...@s1...> * - removed HPATH requirement for use in the toc project (toc.sourceforge.net) * * Aug 2003: rusty <bo...@us...> Index: relativePathToSharedMakefile =================================================================== RCS file: /cvsroot/libfunutil/libfunutil/toc/bin/relativePathToSharedMakefile,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -u -d -r1.1.1.1 -r1.2 --- relativePathToSharedMakefile 5 Aug 2003 09:27:43 -0000 1.1.1.1 +++ relativePathToSharedMakefile 10 Dec 2003 19:45:20 -0000 1.2 @@ -15,7 +15,7 @@ # prints a relative path from the starting dir to that path, or no output if # '$shared_makefile' is not found. # -# stephan - sg...@us... +# stephan - st...@s1... $configure = $shared_makefile; $topdir = "/"; |