Page MenuHomeFreeBSD

Mk/bsd.port.mk: Fix generic variables in PLIST_SUB_SED regression
AbandonedPublic

Authored by koobs on Aug 19 2016, 12:12 PM.
Tags
None
Referenced Files
Unknown Object (File)
Mar 5 2025, 5:08 AM
Unknown Object (File)
Feb 23 2025, 12:51 PM
Unknown Object (File)
Feb 20 2025, 5:52 PM
Unknown Object (File)
Feb 15 2025, 12:06 AM
Unknown Object (File)
Jan 25 2025, 2:21 PM
Unknown Object (File)
Jan 13 2025, 12:17 PM
Unknown Object (File)
Nov 23 2024, 10:33 PM
Unknown Object (File)
Sep 30 2024, 2:33 AM
Subscribers
None

Details

Reviewers
koobs
mat
Group Reviewers
O5: Ports Framework(Owns No Changed Paths)
portmgr
Summary
Mk/bsd.port.mk: Fix generic variables in PLIST_SUB_SED regression

A number of variables that were previously removed from PLIST_SUB_SED for being too
generic, are now present after r420327. This causes pkg-plist entries displayed by
check-stagedir.sh and check_leftover.sh to be over-substituted. 

For example in lang/python36, the LIB32DIR variable is present, replacing every
instance of 'lib':

Error: Orphaned: %%LIB32DIR%%/python%%XYDOT%%/idle%%LIB32DIR%%/tabbedpages.py

In this change:

 * Fix reference to undefined variable (PLIST_SUB_tmp1)
 * Fix reference to incorrect variable (PLIST_SUB_SED_tmp1)

[1] https://svnweb.freebsd.org/ports?view=revision&revision=420327

PR: 211995
Approved by: portmgr
DiffRev: D7580

Diff Detail

Repository
rP FreeBSD ports repository
Lint
No Lint Coverage
Unit
No Test Coverage
Build Status
Buildable 4862
Build 4925: arc lint + arc unit

Event Timeline

koobs retitled this revision from to Mk/bsd.port.mk: Fix generic variables present in PLIST_SUB_SED.
koobs updated this object.
koobs edited the test plan for this revision. (Show Details)
koobs added reviewers: portmgr, mat.
koobs edited edge metadata.
koobs retitled this revision from Mk/bsd.port.mk: Fix generic variables present in PLIST_SUB_SED to Mk/bsd.port.mk: Fix regression - Generic variables present in PLIST_SUB_SED.
koobs retitled this revision from Mk/bsd.port.mk: Fix regression - Generic variables present in PLIST_SUB_SED to Mk/bsd.port.mk: Fix generic variables in PLIST_SUB_SED regression.Aug 19 2016, 12:27 PM
koobs updated this object.
koobs added a reviewer: koobs.

Committed in rP420461