Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristopher Faylor <me@cgf.cx>2003-10-17 21:19:31 +0400
committerChristopher Faylor <me@cgf.cx>2003-10-17 21:19:31 +0400
commitfa10472e4a49b10361b85736b8d8c75895db4edb (patch)
tree910c4c4e72b02f152bbe781a4f7e11547d2fbe15 /winsup/utils/Makefile.in
parent5320b93f4e567564f90ec0eb8f30227b15e65ebd (diff)
* cygcheck.cc (pretty_id): Don't exec if `id' program is not found.
Diffstat (limited to 'winsup/utils/Makefile.in')
-rw-r--r--winsup/utils/Makefile.in6
1 files changed, 3 insertions, 3 deletions
diff --git a/winsup/utils/Makefile.in b/winsup/utils/Makefile.in
index 74a38e6d8..ba7b0d63f 100644
--- a/winsup/utils/Makefile.in
+++ b/winsup/utils/Makefile.in
@@ -77,10 +77,10 @@ PROGS:= cygcheck.exe cygpath.exe getfacl.exe kill.exe mkgroup.exe \
ssp.exe strace.exe umount.exe
CLEAN_PROGS:=$(PROGS)
-ifdef build_dumper
-PROGS+=dumper$(EXEEXT)
-else
+ifndef build_dumper
PROGS:=warn_dumper $(PROGS)
+else
+PROGS+=dumper$(EXEEXT)
CLEAN_PROGS+=dumper.exe
endif