diff options
author | bapt <bapt@FreeBSD.org> | 2012-06-02 17:13:13 +0800 |
---|---|---|
committer | bapt <bapt@FreeBSD.org> | 2012-06-02 17:13:13 +0800 |
commit | a22e518a5402b49db43086deb2ef05c9ddb59bac (patch) | |
tree | 0a68b8c5ff60989ec2415d7ef6fbda710ee232b8 /Mk/bsd.options.mk | |
parent | 19d3b7fd860886b2587eca2d09ad2440ab04aec1 (diff) | |
download | freebsd-ports-gnome-a22e518a5402b49db43086deb2ef05c9ddb59bac.tar.gz freebsd-ports-gnome-a22e518a5402b49db43086deb2ef05c9ddb59bac.tar.zst freebsd-ports-gnome-a22e518a5402b49db43086deb2ef05c9ddb59bac.zip |
Remove the double quotes while converting from old options framework to new one.
This fix the too long options breaking the UI
Reported by: Oliver Pinter <oliver.pntr@gmail.com> (via private mail)
Diffstat (limited to 'Mk/bsd.options.mk')
-rw-r--r-- | Mk/bsd.options.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Mk/bsd.options.mk b/Mk/bsd.options.mk index 77d5964bdada..89df399ccb99 100644 --- a/Mk/bsd.options.mk +++ b/Mk/bsd.options.mk @@ -47,7 +47,7 @@ ALL_OPTIONS+= ${O} PORT_OPTIONS+= ${O} . elif !defined(optdesc) optdesc:= ${opt} -${optname}_DESC:= ${opt} +${optname}_DESC:= ${opt:S|"||g} . else . if ${opt:L} == off . if defined(PORT_OPTIONS) && defined(optname) |