From owner-svn-ports-all@freebsd.org Thu Oct 17 10:44:55 2019 Return-Path: Delivered-To: svn-ports-all@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id C46BB14DA70; Thu, 17 Oct 2019 10:44:55 +0000 (UTC) (envelope-from danfe@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 46v5Qb4DdRz44dG; Thu, 17 Oct 2019 10:44:55 +0000 (UTC) (envelope-from danfe@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 748481F5BE; Thu, 17 Oct 2019 10:44:55 +0000 (UTC) (envelope-from danfe@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x9HAitB5085559; Thu, 17 Oct 2019 10:44:55 GMT (envelope-from danfe@FreeBSD.org) Received: (from danfe@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x9HAitlZ085558; Thu, 17 Oct 2019 10:44:55 GMT (envelope-from danfe@FreeBSD.org) Message-Id: <201910171044.x9HAitlZ085558@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: danfe set sender to danfe@FreeBSD.org using -f From: Alexey Dokuchaev Date: Thu, 17 Oct 2019 10:44:55 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r514656 - head/astro/astrometry/files X-SVN-Group: ports-head X-SVN-Commit-Author: danfe X-SVN-Commit-Paths: head/astro/astrometry/files X-SVN-Commit-Revision: 514656 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 17 Oct 2019 10:44:55 -0000 Author: danfe Date: Thu Oct 17 10:44:55 2019 New Revision: 514656 URL: https://svnweb.freebsd.org/changeset/ports/514656 Log: Amend the patch to ensure that all installed shared objects are properly stripped when needed (should've been part of r514340). Modified: head/astro/astrometry/files/patch-util_Makefile Modified: head/astro/astrometry/files/patch-util_Makefile ============================================================================== --- head/astro/astrometry/files/patch-util_Makefile Thu Oct 17 10:39:01 2019 (r514655) +++ head/astro/astrometry/files/patch-util_Makefile Thu Oct 17 10:44:55 2019 (r514656) @@ -1,6 +1,17 @@ --- util/Makefile.orig 2019-04-22 16:25:30 UTC +++ util/Makefile -@@ -209,7 +209,9 @@ pyinstall: +@@ -198,7 +198,9 @@ LINK_DIR := $(PY_BASE_LINK_DIR)/util + install: install-core + $(MAKE) install-core + @echo "The following copy commands may fail; they are optional." +- -$(MAKE) py && $(CP) _util$(PYTHON_SO_EXT) util.py '$(PY_INSTALL_DIR)' ++ -$(MAKE) py ++ -$(CP) util.py '$(PY_INSTALL_DIR)' ++ -$(BSD_INSTALL_LIB) _util$(PYTHON_SO_EXT) '$(PY_INSTALL_DIR)' + @echo ok + + .PHONY: install +@@ -209,7 +211,9 @@ pyinstall: echo $(CP) $$x '$(PY_INSTALL_DIR)/'$$x; \ $(CP) $$x '$(PY_INSTALL_DIR)/'$$x; \ done @@ -11,7 +22,7 @@ .PHONY: pyinstall -@@ -233,8 +235,8 @@ install-core: $(PYTHON_EXECS) $(PROGS) $(MAIN_PROGS) $ +@@ -233,8 +237,8 @@ install-core: $(PYTHON_EXECS) $(PROGS) $(MAIN_PROGS) $ done @echo Installing executables into '$(BIN_INSTALL_DIR)'... @for x in $(PROGS) $(MAIN_PROGS); do \