From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 1262 invoked by alias); 9 May 2014 06:11:54 -0000 Mailing-List: contact cygwin-help@cygwin.com; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: cygwin-owner@cygwin.com Mail-Followup-To: cygwin@cygwin.com Received: (qmail 1250 invoked by uid 89); 9 May 2014 06:11:53 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-5.7 required=5.0 tests=AWL,BAYES_00,RCVD_IN_DNSWL_NONE,RCVD_NUMERIC_HELO,RP_MATCHES_RCVD,SPF_HELO_PASS,SPF_PASS,T_FSL_HELO_BARE_IP_2 autolearn=no version=3.3.2 X-HELO: plane.gmane.org Received: from plane.gmane.org (HELO plane.gmane.org) (80.91.229.3) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES256-SHA encrypted) ESMTPS; Fri, 09 May 2014 06:11:51 +0000 Received: from list by plane.gmane.org with local (Exim 4.69) (envelope-from ) id 1Wie27-0005uX-OQ for cygwin@cygwin.com; Fri, 09 May 2014 08:11:47 +0200 Received: from 217.10.52.10 ([217.10.52.10]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Fri, 09 May 2014 08:11:47 +0200 Received: from Stromeko by 217.10.52.10 with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Fri, 09 May 2014 08:11:47 +0200 To: cygwin@cygwin.com From: Achim Gratz Subject: Re: Microsoft Accounts (was Re: Problem with "None" Group on Non-Domain Members) Date: Fri, 09 May 2014 06:11:00 -0000 Message-ID: References: <20140505165723.GM30918@calimero.vinschen.de> <5367DEE5.5010407@breisch.org> <20140506125203.GO30918@calimero.vinschen.de> <53691564.1070200@breisch.org> <20140506171626.GZ30918@calimero.vinschen.de> <53692867.4060305@breisch.org> <20140507115730.GE30918@calimero.vinschen.de> <20140507124038.GG30918@calimero.vinschen.de> <536A3E80.2060602@breisch.org> <20140507144611.GM30918@calimero.vinschen.de> <20140508200947.GA2645@calimero.vinschen.de> <536C1D6C.8010908@cornell.edu> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit User-Agent: Loom/3.14 (http://gmane.org/) X-IsSubscribed: yes X-SW-Source: 2014-05/txt/msg00174.txt.bz2 Ken Brown cornell.edu> writes: > This doesn't happen if you install the snapshot by the method suggested > in the FAQ: > > http://cygwin.com/faq.html#faq.setup.snapshots > Or just make a package out of the snapshot and then install it via setup: --8<---------------cut here---------------start------------->8--- .PHONY: all install clean force-clean clean-install snapshot install-snapshot snapshot-debuginfo install-snapshot-debuginfo CV ?= 1.7.29 CR ?= 2 CVR = $(CV)-$(CR) SD ?= 20140508 ARCH ?= $(subst i686,x86,$(shell arch)) CYGMIR = /mnt/mirror/cygwin/$(ARCH)/release/cygwin CYGDEB = $(CYGMIR)/cygwin-debuginfo SNAPSHOT = $(PWD)/$(ARCH)/snapshot-$(SD) SNAPDEB = $(PWD)/$(ARCH)/snapshot-debuginfo-$(SD) SNAPURL = http://cygwin.com/snapshots/$(ARCH) PATCH = /mnt/mirror/patch/$(ARCH)/release/cygwin PATCHDEB = $(PATCH)/cygwin-debuginfo all: snapshot snapshot-debuginfo install: clean-install clean install-snapshot install-snapshot-debuginfo force-clean clean force-clean: rm -fr $(SNAPSHOT) $(SNAPDEB) *.bz2 *.xz *.dbg clean-install: clean rm -f $(PATCH)/cygwin-$(CVR)s$(SD).tar.* $(PATCHDEB)/cygwin-debuginfo-$(CVR)s$(SD).tar.* cygwin-inst-$(SD).tar.xz cygwin1-$(SD).dbg.xz: wget $(SNAPURL)/$@ snapshot: cygwin-inst-$(SD).tar.xz mkdir -p $(SNAPSHOT) $(PATCH) cp -p $(CYGMIR)/setup.hint $(PATCH) tar -C $(SNAPSHOT) -xf $(CYGMIR)/cygwin-$(CVR).tar.xz tar -C $(SNAPSHOT) -xf cygwin-inst-$(SD).tar.xz install-snapshot: snapshot mkdir -p $(PATCH) tar -C $(SNAPSHOT) -Jcf $(PATCH)/cygwin-$(CVR)s$(SD).tar.xz etc/ usr/ snapshot-debuginfo: cygwin1-$(SD).dbg.xz mkdir -p $(SNAPDEB) $(PATCHDEB) cp -p $(CYGDEB)/setup.hint $(PATCHDEB) tar -C $(SNAPDEB) -xf $(CYGDEB)/cygwin-debuginfo-$(CVR).tar.xz unxz -c cygwin1-$(SD).dbg.xz > $(SNAPDEB)/usr/lib/debug/usr/bin/cygwin1.dbg touch -r cygwin1-$(SD).dbg.xz $(SNAPDEB)/usr/lib/debug/usr/bin/cygwin1.dbg install-snapshot-debuginfo: snapshot-debuginfo mkdir -p $(PATCHDEB) tar -C $(SNAPDEB) -Jcf $(PATCHDEB)/cygwin-debuginfo-$(CVR)s$(SD).tar.xz usr/ --8<---------------cut here---------------end--------------->8--- Regards, Achim. -- 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