[MacPorts] #59155: ipe-tools @20151202: command not found
MacPorts
noreply at macports.org
Thu Oct 3 08:39:42 UTC 2019
#59155: ipe-tools @20151202: command not found
-------------------------+----------------------
Reporter: ryandesign | Owner: m7thon
Type: defect | Status: assigned
Priority: Normal | Milestone:
Component: ports | Version: 2.6.1
Resolution: | Keywords:
Port: ipe-tools |
-------------------------+----------------------
Comment (by jmroot):
Well the += syntax has never been supported, so I suspect these variables
may have never been set previously, or were setting variables called
`CXXFLAGS+` etc. The correct syntax is one assignment per Tcl list
element, where an assignment is a variable name, then an equals sign, then
the desired value (which may contain any characters so long as they are
correctly quoted).
So instead of
{{{
CFLAGS+='${configure.cppflags} ${configure.cflags}
${configure.cc_archflags}'
}}}
you would do, assuming you're OK with setting the value rather than
appending to it, this:
{{{
"CFLAGS=${configure.cppflags} ${configure.cflags}
${configure.cc_archflags}"
}}}
The double quotes are needed because the value contains spaces. For
CPPFLAGS in this port you can just do `CPPFLAGS=${configure.cppflags}`.
--
Ticket URL: <https://trac.macports.org/ticket/59155#comment:1>
MacPorts <https://www.macports.org/>
Ports system for macOS
More information about the macports-tickets
mailing list