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>2001-09-25 02:49:12 +0400
committerChristopher Faylor <me@cgf.cx>2001-09-25 02:49:12 +0400
commit3263838430ad3ccf5db934b37c645a83238ea89a (patch)
tree518c07c89416143325400e7e42da5adda9071f9b /winsup/cygwin/Makefile.in
parent35f879a6d0b6c24045570cf882d1474e1ab0de00 (diff)
* select.cc (peek_pipe): Only grab mutex when we actually got something from
the pipe.
Diffstat (limited to 'winsup/cygwin/Makefile.in')
-rw-r--r--winsup/cygwin/Makefile.in6
1 files changed, 3 insertions, 3 deletions
diff --git a/winsup/cygwin/Makefile.in b/winsup/cygwin/Makefile.in
index c18a37745..23012c75d 100644
--- a/winsup/cygwin/Makefile.in
+++ b/winsup/cygwin/Makefile.in
@@ -179,9 +179,6 @@ maintainer-clean realclean: clean
# Rule to build libcygwin.a
-$(LIB_NAME): new-$(DLL_NAME) $(LIBCOS)
- $(AR) rcv $(LIB_NAME) $(LIBCOS)
-
# Rule to make stub library used by testsuite
# dependency set to $(LIB_NAME) to accomodate make -j2.
@@ -199,6 +196,9 @@ new-$(DLL_NAME): $(LDSCRIPT) $(DLL_OFILES) $(DEF_FILE) $(DLL_IMPORTS) $(LIBC) $(
$(DLL_IMPORTS) $(MALLOC_OBJ) $(LIBM) $(LIBC) \
-lstdc++ -lgcc -lshell32 -luuid
+$(LIB_NAME): new-$(DLL_NAME) $(LIBCOS)
+ $(AR) rcv $(LIB_NAME) $(LIBCOS)
+
dll_ofiles: $(DLL_OFILES)
$(LIBGMON_A): $(GMON_OFILES) $(GMON_START)