aboutsummaryrefslogtreecommitdiff
path: root/winsup/utils/Makefile.in
diff options
context:
space:
mode:
authorChristopher Faylor <me@cgf.cx>2003-10-17 17:19:31 +0000
committerChristopher Faylor <me@cgf.cx>2003-10-17 17:19:31 +0000
commitfa10472e4a49b10361b85736b8d8c75895db4edb (patch)
tree910c4c4e72b02f152bbe781a4f7e11547d2fbe15 /winsup/utils/Makefile.in
parent5320b93f4e567564f90ec0eb8f30227b15e65ebd (diff)
downloadnewlib-fa10472e4a49b10361b85736b8d8c75895db4edb.zip
newlib-fa10472e4a49b10361b85736b8d8c75895db4edb.tar.gz
newlib-fa10472e4a49b10361b85736b8d8c75895db4edb.tar.bz2
* 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 74a38e6..ba7b0d6 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