%% "J. Grant" <[EMAIL PROTECTED]> writes: jg> Could someone confirm if "make check" is broken in latest CVS please?
It works for me (on UNIX of course). jg> Is there a fix (or workaround?) for this? jg> (for f in .deps/*.Po; do \ jg> echo ""; \ jg> echo "# $f"; \ jg> cat $f \ jg> | sed -e '/^[^:]*\.[ch] *:/d' \ jg> -e 's, /usr/[^ ]*,,g' \ jg> -e 's, ./, ,g' \ jg> -e '/^ *\\$/d' \ jg> -e '/^ *$/d'; \ jg> done) > .dep_segment jg> /bin/sh: .dep_segment: Permission denied Looks like either your shell has clobber disabled (so that redirection won't overwrite an existing file), or the .dep_segment file is not writable for some reason. I'll change the script to remove the .dep_segment file first; although this is not necessary on UNIX systems it's not a big deal. -- ------------------------------------------------------------------------------- Paul D. Smith <[EMAIL PROTECTED]> Find some GNU make tips at: http://www.gnu.org http://make.paulandlesley.org "Please remain calm...I may be mad, but I am a professional." --Mad Scientist _______________________________________________ Make-w32 mailing list [email protected] http://lists.gnu.org/mailman/listinfo/make-w32
