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:to:from:subject:date:message-id:references :mime-version:content-type:content-transfer-encoding; q=dns; s= default; b=vLiJ50dEP9+mQqBsZwMZK6R0SfK6HZYcR6sE4MInbrtu7Ta+XYf6e IxKZK2vt648TPjDePWLumxVmz8npokweSp9fDtwYmaRFGZZ2IvZDZovejQ8fMjHv Z7OrlkFIkez+be7HHHX1h0cSX44EFPySEGevDypthxL5Vnxs/Iz0yk= 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:to:from:subject:date:message-id:references :mime-version:content-type:content-transfer-encoding; s=default; bh=lx9asgwrwdYxqaVTIyfYhElP51M=; b=ZbxSij3YK2548CrPHyy6X1UhpR3t xRVtVXX9VM8PJCT31/LCFXYsZdTSVYTW7g6zCEzt8q9IRXOjLlG4sMX7crK5DgNk a0NZFxjOitT88kjXu9AWWV1xg9n6+skJ8tD/mMuK1lJd2TGYWS9gnPdRfxIrdWCU DFwfLRyOTiXWayc= 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-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 To: cygwin AT cygwin DOT com From: Achim Gratz Subject: Re: Microsoft Accounts (was Re: Problem with "None" Group on Non-Domain Members) Date: Fri, 9 May 2014 06:11:36 +0000 (UTC) Lines: 63 Message-ID: References: <20140505165723 DOT GM30918 AT calimero DOT vinschen DOT de> <5367DEE5 DOT 5010407 AT breisch DOT org> <20140506125203 DOT GO30918 AT calimero DOT vinschen DOT de> <53691564 DOT 1070200 AT breisch DOT org> <20140506171626 DOT GZ30918 AT calimero DOT vinschen DOT de> <53692867 DOT 4060305 AT breisch DOT org> <20140507115730 DOT GE30918 AT calimero DOT vinschen DOT de> <20140507124038 DOT GG30918 AT calimero DOT vinschen DOT de> <536A3E80 DOT 2060602 AT breisch DOT org> <20140507144611 DOT GM30918 AT calimero DOT vinschen DOT de> <20140508200947 DOT GA2645 AT calimero DOT vinschen DOT de> <536C1D6C DOT 8010908 AT cornell DOT 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 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