diff options
author | Brian Dessent <brian@dessent.net> | 2008-03-09 09:41:42 +0000 |
---|---|---|
committer | Brian Dessent <brian@dessent.net> | 2008-03-09 09:41:42 +0000 |
commit | 92108f4e26bdbf3a476df3f2a13e61307236daed (patch) | |
tree | 4ac0c5507d5784f3304544c6f1c4ca2f74293fe3 /winsup/utils | |
parent | 59fb00ae07d9cfbfac3735f541149bed2c7625cb (diff) | |
download | cygnal-92108f4e26bdbf3a476df3f2a13e61307236daed.tar.gz cygnal-92108f4e26bdbf3a476df3f2a13e61307236daed.tar.bz2 cygnal-92108f4e26bdbf3a476df3f2a13e61307236daed.zip |
* Makefile.in (install): Don't install the testsuite.
Diffstat (limited to 'winsup/utils')
-rw-r--r-- | winsup/utils/ChangeLog | 4 | ||||
-rw-r--r-- | winsup/utils/Makefile.in | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/winsup/utils/ChangeLog b/winsup/utils/ChangeLog index 306f68335..18f70518a 100644 --- a/winsup/utils/ChangeLog +++ b/winsup/utils/ChangeLog @@ -1,3 +1,7 @@ +2008-03-09 Brian Dessent <brian@dessent.net> + + * Makefile.in (install): Don't install the testsuite. + 2008-03-08 Brian Dessent <brian@dessent.net> * Makefile.in: Add a 'check' target that builds and runs diff --git a/winsup/utils/Makefile.in b/winsup/utils/Makefile.in index 3966c6d62..24defb0a7 100644 --- a/winsup/utils/Makefile.in +++ b/winsup/utils/Makefile.in @@ -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 |