G'day, I'm experiencing problems when issuing a "make distclean" in gnuradio-core.
The problem shows up when attempting to remove certain files or directory in
gnuradio-core/doc that didn't exist due to failure of the build process.
A fix to get around this problem is to force the 'rm' utility to ignore this
error condition and hence allowing the clean-up process to proceed - see
patch below.
I haven't checked the other modules for similar issues as yet.
cheerio Berndt
--- doc/Makefile.in.orig 2005-08-17 12:39:12.000000000 +0930
+++ doc/Makefile.in 2005-08-17 12:40:05.000000000 +0930
@@ -654,8 +654,7 @@
$(RM) -fr $(DESTDIR)$(docdir)/html
clean-local:
- $(RM) -r latex
- $(RM) -r html man
+ $(RM) -fr latex html man
# Tell versions [3.59,3.63) of GNU make to not export all variables.
# Otherwise a system limit (for SysV at least) may be exceeded.
.NOEXPORT:
pgpjm6kGOC8R8.pgp
Description: PGP signature
_______________________________________________ Discuss-gnuradio mailing list [email protected] http://lists.gnu.org/mailman/listinfo/discuss-gnuradio
