This is the mail archive of the cygwin-patches mailing list for the Cygwin 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]

Re: [patch] utils/path.cc fixes and testsuite


Corinna Vinschen wrote:

> Doesn't that install testsuite.exe at `make install' time?

Ack, how about the attached?

Brian
2008-03-09  Brian Dessent  <brian@dessent.net>

	* Makefile.in (install): Don't install the testsuite.

Index: Makefile.in
===================================================================
RCS file: /cvs/src/src/winsup/utils/Makefile.in,v
retrieving revision 1.70
diff -u -p -r1.70 Makefile.in
--- Makefile.in	9 Mar 2008 04:10:10 -0000	1.70
+++ Makefile.in	9 Mar 2008 08:52:06 -0000
@@ -157,7 +157,7 @@ realclean: clean
 
 install: all
 	$(SHELL) $(updir1)/mkinstalldirs $(bindir)
-	for i in $(CYGWIN_BINS) $(MINGW_BINS) ; do \
+	for i in $(CYGWIN_BINS) ${filter-out testsuite.exe,$(MINGW_BINS)} ; do \
 	  n=`echo $$i | sed '$(program_transform_name)'`; \
 	  $(INSTALL_PROGRAM) $$i $(bindir)/$$n; \
 	done

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