Page MenuHomeFreeBSD

Remove superfluous space
ClosedPublic

Authored by sunpoet on Jan 12 2017, 8:27 PM.
Tags
None
Referenced Files
Unknown Object (File)
Sat, Apr 13, 10:51 PM
Unknown Object (File)
Mar 12 2024, 6:27 AM
Unknown Object (File)
Feb 20 2024, 12:14 PM
Unknown Object (File)
Jan 11 2024, 7:07 AM
Unknown Object (File)
Dec 25 2023, 9:44 AM
Unknown Object (File)
Dec 25 2023, 9:44 AM
Unknown Object (File)
Dec 25 2023, 9:44 AM
Unknown Object (File)
Dec 25 2023, 9:31 AM
Subscribers

Details

Reviewers
AMDmi3
sunpoet
swills
Group Reviewers
O5: Ports Framework(Owns No Changed Paths)
portmgr
Commits
rP435394: Remove superfluous space

Diff Detail

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

Event Timeline

sunpoet retitled this revision from to Remove superfluous space.
sunpoet updated this object.
sunpoet edited the test plan for this revision. (Show Details)
AMDmi3 requested changes to this revision.Feb 28 2017, 7:48 AM
AMDmi3 edited edge metadata.

Apart from one bit, others are probably good after we've dropped fmake. Please also fix another bit in bsd.licenses.db.mk

Mk/bsd.licenses.mk
719

This one is prone to += problem.

This revision now requires changes to proceed.Feb 28 2017, 7:48 AM

Just to sure you're aware, the reason these spaces were added is the presence of licenses like "GPLv2+". The problem is that naive

LICENSE_FILE_GPLv2+=foo

will be interpreted as

(LICENSE_FILE_GPLv2)(+=)(foo)

while

(LICENSE_FILE_GPLv2+)(=)(foo)

is meant. With fmake, the problem is there even in substitutions like

lic=GPLv2+
LICENSE_FILE_${lic}=foo

but as fmake is gone, this is fixed. The echo, however, will output verbatim make code which is prone to += problem, so the space there may not be removed.

sunpoet edited edge metadata.

Remove superfluous space

Thanks for the explanation. A newer version including Mk/bsd.licenses.db.mk was submitted.

AMDmi3 edited edge metadata.

LGTM

Now I need approval from portmgr. @mat, is it OK for you?

This was committed, please close.

Same as I replied in D9250.
Since you are member of portmgr, please approve it and then I could close it.

Seems pointless to approve after it was committed, but OK.

This revision is now accepted and ready to land.Apr 18 2017, 1:38 PM