delorie.com/archives/browse.cgi   search  
Mail Archives: cygwin/2018/02/13/04:33:42

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:message-id:date:mime-version
:content-type; q=dns; s=default; b=HKQ3LWPlVHkoa9xjKi6VBOhSwePpV
8Zka7GAGl36QVMlDF2h1mXIWM+MdgYeUW95tUbk5KNMafbQ6NRqkxP7Otuy8zHed
L2oqhB1rw3rwoj/8iavu1vC58p+LLkZkOft9opzwFB+GKr8n1VUNq8LuTnqZsdqd
5Pjj8KVOAVHies=
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:message-id:date:mime-version
:content-type; s=default; bh=A6gv3e6M/tTbUUjORTim7V66AEY=; b=a+G
p6wsxAlKM6KzWP8Q+jWBrP5/ghsOi85BQJqt17+/ahMv7peSdppoueZzrUhlui9D
ZrMSB2GbLiYhQrZ5uRpDQUTifF/KKmwrzXYAnoXICJMYNlXgT0P0SAsi/tKNUO6S
iiRBWHPgeXKELAOJuGa07GtiNRoI/8L/2rj5Lw14=
Mailing-List: contact cygwin-help AT cygwin DOT com; run by ezmlm
List-Id: <cygwin.cygwin.com>
List-Subscribe: <mailto:cygwin-subscribe AT cygwin DOT com>
List-Archive: <http://sourceware.org/ml/cygwin/>
List-Post: <mailto:cygwin AT cygwin DOT com>
List-Help: <mailto:cygwin-help AT cygwin DOT com>, <http://sourceware.org/ml/#faqs>
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=-11.9 required=5.0 tests=BAYES_00,FREEMAIL_FROM,GIT_PATCH_2,GIT_PATCH_3,RCVD_IN_DNSWL_NONE,SPF_PASS autolearn=ham version=3.3.2 spammy=H*u:6.1, H*UA:6.1
X-HELO: mail-wr0-f178.google.com
X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:to:from:subject:message-id:date:user-agent :mime-version:content-language; bh=DJJi1KS2Vl49xW38zK90AtqqYl/jxqP2u335r+d5TqI=; b=Bi1HONSrwdSc7FtZB1f5Z196QTywKNo89upr3yTs+CDQ+svFDrauldy9mK6llcnsey fHYm4V4g3NctfWtFdm5UW6kPnA2dcoPslUdsoPzIgVN/xCTH9or967V04vq1A49VzCXs ww17yqbI0tQ9QmoRW11ZTlpx96ngITK87e+bKasvh4XCdnr9asNuDWeqtYOHoxn3X8Ph 2McjLc3t22HLainhltHtBy2pgcOysZmi60JetKURTPv0ZN+vAXeqeKSaca0GfXEF/QpR tdrcXo3nCDNtu30gb6AQXPWK4rn4QBmQUAaIq6fZMx9/nCre546NakXwHkgQkXEjQ+W0 WGhQ==
X-Gm-Message-State: APf1xPAmEqHWCEQ3OK9Qk1MbaFbMvBNAdXviLfFcb9tSsRmUu/pGy+4L 47N9gx6ArRJlclS4nMlbcnFpIg==
X-Google-Smtp-Source: AH8x227VquUYXK2P7ylODkHhMGD5UF1jDpCiXj0m+Ko0peaR2FTfqkzGUhpRMdAnjieZJkk0f9KlOQ==
X-Received: by 10.223.201.11 with SMTP id m11mr226572wrh.146.1518514384663; Tue, 13 Feb 2018 01:33:04 -0800 (PST)
To: "cygwin AT cygwin DOT com" <cygwin AT cygwin DOT com>
From: Marco Atzeri <marco DOT atzeri AT gmail DOT com>
Subject: cygport: patch for debug info
Message-ID: <5635d0e4-73ee-7cb9-7cd0-8a72a5f6d8fb@gmail.com>
Date: Tue, 13 Feb 2018 10:32:58 +0100
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:52.0) Gecko/20100101 Thunderbird/52.6.0
MIME-Version: 1.0
X-IsSubscribed: yes

--------------046A993CBECFBC691D0F672F
Content-Type: text/plain; charset=utf-8; format=flowed
Content-Transfer-Encoding: 7bit

Hi Yaakov,
can you also consider to add the attached patch?

Without it the extraction of debug info enter in a never ending loop
in lib/src_postinst.cygpart

I am using a symbolic link in my build directory to share between
the two archs.

$ readlink -f /pub/devel
/cygdrive/e/cyg_pub/devel

and when using "/pub/devel" as baseline the loop never matches
as one side is using readlink and the other not.

------------ lib/src_postinst.cygpart -----
  while [ $(readlink -f ${ltlibdir}/${dlname%/bin/*}) != 
${D}$(__host_prefix) ]
  do
      dlname=../${dlname}
  done
---------------------------------------------

If I am not wrong it also hit a similar problem somewhere
else and adjusting "_topdir" is the simpler solution;
or at least never gave me anymore problem.

Regards
Marco







--------------046A993CBECFBC691D0F672F
Content-Type: text/plain; charset=UTF-8;
 name="cygport.patch"
Content-Transfer-Encoding: base64
Content-Disposition: attachment;
 filename="cygport.patch"

LS0tIC91c3IvYmluL2N5Z3BvcnR+CTIwMTUtMDctMjAgMDk6MTI6MDguMDAw
MDAwMDAwICswMjAwCisrKyAvdXNyL2Jpbi9jeWdwb3J0CTIwMTUtMTEtMjEg
MTc6NDU6MTMuNTgzODU0ODAwICswMTAwCkBAIC0zOTUsNyArMzk1LDcgQEAK
IHRoZW4KIAlpZiBbIC1mIC4vJHtjeWdwb3J0ZmlsZX0gXQogCXRoZW4KLQkJ
X3RvcGRpcj0uOworCQlfdG9wZGlyPSQocmVhZGxpbmsgLWYgLik7CiAJZWxz
ZQogCQlfdG9wZGlyPS91c3Ivc3JjOwogCWZpCg==


--------------046A993CBECFBC691D0F672F
Content-Type: text/plain; charset=us-ascii


--
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
--------------046A993CBECFBC691D0F672F--

- Raw text -


  webmaster     delorie software   privacy  
  Copyright © 2019   by DJ Delorie     Updated Jul 2019