This is the mail archive of the gcc-bugs@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[Bug testsuite/29527] New: make clean in libiberty/testsuite does nothing under cygwin


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


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]