X-Recipient: archive-cygwin@delorie.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@cygwin.com; run by ezmlm
List-Id: <cygwin.cygwin.com>
List-Subscribe: <mailto:cygwin-subscribe@cygwin.com>
List-Archive: <http://sourceware.org/ml/cygwin/>
List-Post: <mailto:cygwin@cygwin.com>
List-Help: <mailto:cygwin-help@cygwin.com>, <http://sourceware.org/ml/#faqs>
Sender: cygwin-owner@cygwin.com
Mail-Followup-To: cygwin@cygwin.com
Delivered-To: mailing list cygwin@cygwin.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@cygwin.com
From: Achim Gratz <Stromeko@NexGo.DE>
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: <loom.20140509T080555-156@post.gmane.org>
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> <CAAeCd-OL1U-9CTTXByWx4voR-uBGrQ7zdWk=FyDoREj7NymRYA@mail.gmail.com> <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

Ken Brown <kbrown <at> 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

