summaryrefslogtreecommitdiff
path: root/Mk/Wrappers (follow)
Commit message (Collapse)AuthorAgeFilesLines
* framework: Remove $FreeBSD$Mathieu Arnold2021-04-062-4/+0
| | | | Where appropriate fiddle with a few other things.
* Remove the -L argument that crept in by accidentBaptiste Daroussin2020-03-101-1/+1
| | | | Notes: svn path=/head/; revision=528174
* Create a bison wrapper on top of base byaccBaptiste Daroussin2020-03-101-0/+19
| | | | | | | | | | | | | | | | The wrapper deals with various simple incompatibilities between byacc and bison: * first deals with --version which might often be called * --verbose and -v are ignored * normally yacc is called like this: yacc [options] input, but with GNU programs like bison the input can be mixed in the middle of the arguments, unmangle that Add a new 'wrapper' argument to USES=bison use the wrapper Reviewed by: mat Differential Revision: https://reviews.freebsd.org/D24017 Notes: svn path=/head/; revision=528172
* BINARY_WRAPPERS allow to push in front of the PATH wrappers for binaries.Baptiste Daroussin2019-10-011-0/+8
This is useful when 2 tools do provide the same feature, but the configure scripts do test for some variables which are not in one of the tool. For example m4 in base is mostly compatible with GNU m4 when called with the -g arguement. This wrapper allows to use it with build systems that do check for it calling --version and expecting GNU in the arguments. Reviewed by: mat (final discussions on irc) Differential Revision: https://reviews.freebsd.org/D21835 Notes: svn path=/head/; revision=513486