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:message-id:from:to:subject:date:content-type :content-transfer-encoding:mime-version; q=dns; s=default; b=ie6 IjgPEr/acRiCODRU8eEt7Sja8OUMFnEmnsNuGFgHUKHjQtIj7/tFraiPvuotB9ms 93YTeg1ecF9IFX9HLZ4xKQIIKNPCSvwRyIKjuYW1xFxnj2pBFLLBiGDIMBtZZpmZ 5WPdphOBsMN8haUjuko039LkDj7kciU8r/DIfKvc= 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:message-id:from:to:subject:date:content-type :content-transfer-encoding:mime-version; s=default; bh=wkrAwiz6R M9fVvTVgUzhT4C1RLY=; b=Z+cz9DthsELKHrEHpnVuAVx8IWZqysXpfA4jU7Jxe gfnlvJ/l74XM6uX6T3eqY6vH9u1DOtNAGLuFv76PId2TOu1rSUK/m8z3FwG6uuK2 FNJEIknBuZmWV6ux+feWD7IJOPtFqWDRdTHU7UsgJbOYXVEXfSd9vOyxCrf3A/1c J8= 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=-1.8 required=5.0 tests=AWL,BAYES_00,FREEMAIL_FROM,RCVD_IN_DNSWL_LOW,SPF_PASS autolearn=ham version=3.3.2 spammy=*cc, $*.cc, UD:$*.cc, SHELL X-HELO: mail-pa0-f41.google.com X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:message-id:from:to:subject:date:importance :content-type:content-transfer-encoding:mime-version; bh=rMpxYD9CwkkYg3M3oqxzT7Zlq2hsVj5UUkNRxt/XZho=; b=h5WiG17LxdKVHT8Grj+qMRmUHPlnC1m4Wn0xLIkoEbGC7gzDPIchLl7KQGqh+0vb5O Z2GzrvGbus88sQkB5bV5Q0CdxhGXlOlaANMvhR8uXtiEwuYRsEvb1Vd2iSeuSZTx2HSI aoPNb8um/70GKR7vHycca876uoryo+IXrpKuIlxHVM6C3/O/B+GZtYmEZLnTu6UDWBEE qguH3z27hn+PykgJsfbad6q/98L7X4JZ9+H4iMQOIrqYcNw6qace6Awq1Sa6BqGQTXay KntLnZgnU3RsrHrSoB3T06M/91wD+hwpGdE0r/DSygmYCM9YOAL63/gOtyaljEkAvLk4 vHsQ== X-Gm-Message-State: AG10YOTw4gDFi3mN5FSykrxCWMQ5mwmPJqtq23xle2G+OqAaQtqVO/0ITZSn9scZRTs4WQ== X-Received: by 10.67.14.234 with SMTP id fj10mr17455332pad.149.1453878617931; Tue, 26 Jan 2016 23:10:17 -0800 (PST) X-TMN: [mVW02KMevZ4KNfnkWJOE5+bHR9IDAKkt] Message-ID: From: Robert May To: "cygwin AT cygwin DOT com" Subject: Re: stampy error running Make after installing update 2.4.1.1 to Cygwin64 Date: Wed, 27 Jan 2016 17:10:15 +1000 Content-Type: text/plain; charset="iso-8859-1" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-MIME-Autoconverted: from quoted-printable to 8bit by delorie.com id u0R7Adwx002236 I still can.t make sense of it below is the contents of makefile the end of running make is still the same $ make makefile:1: *** missing separator.  Stop. maybe someone can make sense of the below Bob m# # - the linux x86-64 platform is supported, with Python 2.7.  Both #   2- and 4-byte 4-byte Unicode representations (UCS2 and UCS4) are supported. #   SHELL=/bin/bash python?=python ############################# # User targets ############################# all:     @$(MAKE) ucs=`$(python) -c "import sys;print sys.maxunicode> 65536 and 'ucs4' or 'ucs2'"` platform=`$(python) -c "import sys;print {'linux2':'linux-x86_64','darwin':'macosx-10.6-universal'}.get(sys.platform,'unknown')"` build-stampy clean:     -rm maptools.so     -rm build/*/*.pyc ############################# # End of user targets ############################# build-stampy:     @if [[ `$(python) --version 2>&1 |awk -F "." '{print $$2}'` -eq 7 ]]; then \       $(MAKE) bdir=build/$(platform)-2.7-$(ucs) python=python2.7 platform=$(platform) buildall ; \     else \       echo Python version 2.7 is required; \     fi ## remove \ from 25, 26, 27 & 28   not thots not it put them back objs=$(bdir)/pyx/maptools.o $(bdir)/c/maputils.o $(bdir)/c/alignutils.o $(bdir)/readalign.o $(bdir)/algebras.o $(bdir)/frontend.o $(bdir)/%.o:     gcc -pthread -fno-strict-aliasing -DNDEBUG -g -fwrapv -O2 -Wall -fPIC `$(python)-config --includes` -c ext/readalign/$*.cc -o $@ buildall: $(bdir)/readalign.o $(bdir)/frontend.o $(bdir)/algebras.o     cp -r build/$(python)/*  .        ifeq ($(platform),linux-x86_64)                g++ `$(python)-config --ldflags` -pthread -shared $(objs) -o maptools.so           else                 g++ `$(python)-config --ldflags` -pthread -dynamiclib $(objs) -o maptools.so        endif  Bob May DNA Projects I2b L415, I2c L596 HG, Spriggs of Cleve SA Family & Tyler Surname and ISOGG YTree -- 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