This is the mail archive of the
gcc-bugs@gcc.gnu.org
mailing list for the GCC project.
[Bug testsuite/29527] New: make clean in libiberty/testsuite does nothing under cygwin
- From: "phil dot lello at homecall dot co dot uk" <gcc-bugzilla at gcc dot gnu dot org>
- To: gcc-bugs at gcc dot gnu dot org
- Date: 20 Oct 2006 20:11:34 -0000
- Subject: [Bug testsuite/29527] New: make clean in libiberty/testsuite does nothing under cygwin
- Reply-to: gcc-bugzilla at gcc dot gnu dot org
The current rule for make clean on libiberty/testsuite doesn't append EXEEXT,
so make clean doesn't perform as expected under cygwin.
The following patch resolves this; please test/commit
Phil Lello
Index: libiberty/testsuite/Makefile.in
===================================================================
--- libiberty/testsuite/Makefile.in (revision 117909)
+++ libiberty/testsuite/Makefile.in (working copy)
@@ -77,9 +77,9 @@
# The standard clean rules.
mostlyclean:
- rm -f test-demangle
- rm -f test-pexecute
- rm -f test-expandargv
+ rm -f test-demangle@EXEEXT@
+ rm -f test-pexecute@EXEEXT@
+ rm -f test-expandargv@EXEEXT@
clean: mostlyclean
distclean: clean
rm -f Makefile
--
Summary: make clean in libiberty/testsuite does nothing under
cygwin
Product: gcc
Version: unknown
Status: UNCONFIRMED
Severity: minor
Priority: P3
Component: testsuite
AssignedTo: unassigned at gcc dot gnu dot org
ReportedBy: phil dot lello at homecall dot co dot uk
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=29527