From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from fox.rettoggalt.com (fox.rettoggalt.com [208.113.132.120]) by sourceware.org (Postfix) with ESMTPS id 781CC384783E for ; Thu, 8 Jul 2021 02:13:20 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org 781CC384783E MIME-Version: 1.0 Date: Thu, 08 Jul 2021 04:13:16 +0200 From: enrique@perezterron.net To: cygwin@cygwin.com Subject: include "/usr/local/lib/python3.8" in rebaseall? User-Agent: Roundcube Webmail/1.4.5 Message-ID: <68f062dc8be18dc228054405d32bda00@perezterron.net> Content-Type: text/plain; charset=US-ASCII; format=flowed Content-Transfer-Encoding: 7bit Received: from localhost (Unknown [127.0.0.1]) by fox.rettoggalt.com (Haraka) with ESMTPSA id 2FAA60D9-09F5-416F-85D2-0B17FE30915C.1 envelope-from (authenticated bits=0) (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256); Thu, 08 Jul 2021 04:13:17 +0200 X-Spam-Status: No, score=0.7 required=5.0 tests=BAYES_50, DKIM_SIGNED, DKIM_VALID, DKIM_VALID_AU, DKIM_VALID_EF, MSGID_FROM_MTA_HEADER, SPF_HELO_NONE, SPF_PASS, TXREP autolearn=ham autolearn_force=no version=3.4.4 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on server2.sourceware.org X-BeenThere: cygwin@cygwin.com X-Mailman-Version: 2.1.29 Precedence: list List-Id: General Cygwin discussions and problem reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 08 Jul 2021 02:13:21 -0000 Hello! When I "pip install" python modules for which there are no cygwin packages, *.dll files are installed below /usr/local/lib/python3.8/site-packages/. Since rebaseall does not automatically rebase files under this location, I had fork failures. The following patch solved it for me: $ diff -u old-rebaseall rebaseall --- old-rebaseall 2021-07-08 04:06:16.843238400 +0200 +++ rebaseall 2021-07-08 04:08:20.586260500 +0200 @@ -219,7 +219,7 @@ # package manager, such as CPAN and RubyGems. for d in /usr/lib/perl5/site_perl /usr/lib/py*/site-packages \ /usr/lib/php /usr/lib/R/site-library /usr/lib/rub*/gems \ - /usr/lib/octave/site + /usr/lib/octave/site /usr/local/lib/python*/site-packages do if [ -d $d ] then Thanks -Enrique