From bug-request at octave dot org Mon Nov 21 10:00:08 2005 Subject: examples/octave.desktop left after make distclean From: "John W. Eaton" To: Rafael Laboissiere Cc: bug at octave dot org Date: Mon, 21 Nov 2005 10:59:25 -0500 On 21-Nov-2005, Rafael Laboissiere wrote: | Bug report for Octave 2.9.4 configured for i486-pc-linux-gnu | | Description: | ----------- | | The file examples/octave.desktop is left after make distclean. Since | this file is generated when running ./configure and not distributed in | the tarball, it should be removed by make distclean, not only by make | maintainer-clean. | | | Repeat-By: | --------- | | make distclean | | Fix: | --- | | Trivial patch: | | --- examples/Makefile-in.orig 2005-11-21 14:27:03.901117416 +0100 | +++ examples/Makefile-in 2005-11-21 14:26:27.308680312 +0100 | at @ -69,11 +69,11 @@ | .PHONY: clean mostlyclean | | distclean: | - rm -f Makefile | + rm -f Makefile octave.desktop | .PHONY: distclean | | maintainer-clean: distclean | - rm -f tags TAGS octave.desktop | + rm -f tags TAGS | .PHONY: maintainer-clean | | dist: I'm not sure how you generated this diff. There is no Makefile-in in the Octave source tree. In any case, I see DISTFILES = Makefile.in $(SOURCES) $(SCRIPTS) $(IMAGE_FILES) octave.desktop in examples/Makefile.in, so octave.desktop is distributed, but maybe it does not need to be since it is trivial to generate (the rule is in examples/Makefile, not the configure script). So I'll remove it from DISTFILES and add it to the distclean target. Thanks, jwe ------------------------------------------------------------- Octave is freely available under the terms of the GNU GPL. Octave's home on the web: http://www.octave.org How to fund new projects: http://www.octave.org/funding.html Subscription information: http://www.octave.org/archive.html -------------------------------------------------------------