X-Recipient: archive-cygwin AT delorie DOT com DomainKey-Signature: a=rsa-sha1; c=nofws; d=sourceware.org; h=list-id :list-unsubscribe:list-subscribe:list-archive:list-post :list-help:sender:content-type:mime-version:subject:from :in-reply-to:date:cc:content-transfer-encoding:message-id :references:to; q=dns; s=default; b=gnECn7qa281Carp/i9krvISx5w0B jLqcOPMUEuPhGCf0tqJ7gDv/UIVnODIams428E3ChmzEQgSJe4Ba9hzDHpDexiyW 9In6aCoOGEx9KXgROGeL+02FPpGtNELiTkD0imsFiYSHp5eMs+S9+3j91QUkzm/b JP+LOUsOGB/WYT0= DKIM-Signature: v=1; a=rsa-sha1; c=relaxed; d=sourceware.org; h=list-id :list-unsubscribe:list-subscribe:list-archive:list-post :list-help:sender:content-type:mime-version:subject:from :in-reply-to:date:cc:content-transfer-encoding:message-id :references:to; s=default; bh=36huiT94zRTaHJuIA55t8+pSurc=; b=HW U1JzhfVxs2YzjFLmBytDUzWT5L5i//BTFw8TwwNn1XaFwzO+t3NDa8b27B5qNX0R qU3jmOCOttSikLMIAUeH2QGmJ1VvStrTllegTDKk20rzfD1KpV+gZHV1ASam2wCA nGylz+/7Smc0WRWLqmH8R+6YTuWk04C9ubUBNZM0c= Mailing-List: contact cygwin-help AT cygwin DOT com; run by ezmlm List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: cygwin-owner AT cygwin DOT com Mail-Followup-To: cygwin AT cygwin DOT com Delivered-To: mailing list cygwin AT cygwin DOT com Authentication-Results: sourceware.org; auth=none X-Spam-SWARE-Status: No, score=-0.9 required=5.0 tests=AWL,RCVD_IN_DNSWL_LOW autolearn=ham version=3.3.2 X-HELO: smtp5-g21.free.fr Content-Type: text/plain; charset=us-ascii Mime-Version: 1.0 (Mac OS X Mail 8.1 \(1993\)) Subject: Re: [ANNOUNCEMENT] TEST RELEASE: Cygwin 1.7.34-005 From: Denis Excoffier In-Reply-To: <4BC12BFE-A1A9-4800-B10D-95E164E054B8@Denis-Excoffier.org> Date: Wed, 28 Jan 2015 11:20:19 +0100 Cc: cygwin AT cygwin DOT com Message-Id: References: <1E0AF396-18FB-4402-92C2-A46FD9F5E80F AT Denis-Excoffier DOT org> <20150122091435 DOT GD19127 AT calimero DOT vinschen DOT de> <4BC12BFE-A1A9-4800-B10D-95E164E054B8 AT Denis-Excoffier DOT org> To: Denis Excoffier Content-Transfer-Encoding: 8bit X-MIME-Autoconverted: from quoted-printable to 8bit by delorie.com id t0SAOasi018797 On 2015-01-24 17:45, Denis Excoffier wrote: > > On 2015-01-22 23:07, Denis Excoffier wrote: >> >> % /usr/bin/ls / >> /usr/bin/ls: reading directory /: No such file or directory >> (regular ls output follows) >> % >> > I reinstalled cygwin completely. > The problem is now vanished. > > No idea what caused the problem. Now i know: in /etc/fstab i have the line: X:/some/svnrepository /svnX ntfs cygexec,noacl which works well when X: is there, but which produces the above message when i'm at home. End of the story? Not really: 1) perhaps the /usr/bin/ls message would deserve some improvement, by naming the failing folder (/svnX) 2) why is the build of cygserver impacted by something that takes place at the root directory (see "Trying implicit prerequisite '/version.cc'." in https://cygwin.com/ml/cygwin/2015-01/msg00294.html)? For item 2: Bingo! Perhaps unexpectedly, $(cygwin_source) is unknown within cygwin sources... Please apply the following: diff -uNr cygwin-snapshot-20150122-1.vanilla/winsup/cygserver/Makefile.in cygwin-snapshot-20150122-1.patched/winsup/cygserver/Makefile.in --- cygwin-snapshot-20150122-1.vanilla/winsup/cygserver/Makefile.in 2014-07-24 15:21:47.000000000 +0200 +++ cygwin-snapshot-20150122-1.patched/winsup/cygserver/Makefile.in 2015-01-28 10:36:17.000000000 +0100 @@ -73,10 +73,10 @@ cygserver.exe: $(CYGWIN_LIB) $(OBJS) $(CYGWIN_OBJS) $(CXX) -o $@ ${wordlist 2,999,$^} -static -static-libgcc -B$(cygwin_build) -lntdll -$(cygwin_build)/%.o: $(cygwin_source)/%.cc +$(cygwin_build)/%.o: $(cygwin_build)/%.cc @$(MAKE) -C $(@D) $(@F) -$(cygwin_build)/%.o: $(cygwin_source)/%.c +$(cygwin_build)/%.o: $(cygwin_build)/%.c @$(MAKE) -C $(@D) $(@F) Makefile: Makefile.in configure Regards, Denis Excoffier. -- Problem reports: http://cygwin.com/problems.html FAQ: http://cygwin.com/faq/ Documentation: http://cygwin.com/docs.html Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple