Remove $FreeBSD$: two-line nroff patternRemove /^\.\\"\n\.\\"\s*\$FreeBSD\$$\n/
Remove $FreeBSD$: one-line sh patternRemove /^\s*#[#!]?\s*\$FreeBSD\$.*$\n/
Remove $FreeBSD$: two-line .h patternRemove /^\s*\*\n \*\s+\$FreeBSD\$$\n/
Update/fix Makefile.depend for userland
libpathconv: bump man page dates- bump the man page dates to the date of mandoc fixesReported by: rpokalaX-MFC with: 094517119c62c23369d545a7475ae982d86330a3
libpathconv: Fix mandoc warnings in abs2rel(3) and rel2abs(3)- cannot parse date, using it verbatim: Dec 15, 1997"- sections out of conventional order: Sh SEE ALSO- possible typo in section name:
libpathconv: Fix mandoc warnings in abs2rel(3) and rel2abs(3)- cannot parse date, using it verbatim: Dec 15, 1997"- sections out of conventional order: Sh SEE ALSO- possible typo in section name: Sh EXAMPLE instead of EXAMPLES- AUTHORS section without An macroMFC after: 3 days
show more ...
Fix a few mandoc issues- skipping paragraph macro: Pp after Sh- sections out of conventional order: Sh EXAMPLES- whitespace at end of input line- normalizing date format
Do a sweep and remove most WARNS=6 settingsRepeating the default WARNS here makes it slightly more difficult toexperiment with default WARNS changes, e.g. if we did something absolutelybananas an
Do a sweep and remove most WARNS=6 settingsRepeating the default WARNS here makes it slightly more difficult toexperiment with default WARNS changes, e.g. if we did something absolutelybananas and introduced a WARNS=7 and wanted to try lifting the default tothat.Drop most of them; there is one in the blake2 kernel module, but I suspectit should be dropped -- the default WARNS in the rest of the build doesn'tcurrently apply to kernel modules, and I haven't put too much thought intowhether it makes sense to make it so.
Disconnect libpathconv tests since they require external perl and do not work with kyua.This reverts r325192 and is due to libpathconv being connected in r325186.Reported by: ngieSponsored by: D
Disconnect libpathconv tests since they require external perl and do not work with kyua.This reverts r325192 and is due to libpathconv being connected in r325186.Reported by: ngieSponsored by: Dell EMC Isilon
DIRDEPS_BUILD: Connect new directories.Sponsored by: Dell EMC Isilon
Add HAS_TESTS to all Makefiles that are currently using the`SUBDIR.${MK_TESTS}+= tests` idiom.This is a follow up to r321912.
Convert traditional ${MK_TESTS} conditional idiom for including testdirectories to SUBDIR.${MK_TESTS} idiomThis is being done to pave the way for future work (and homogenity) in^/projects/make-ch
Convert traditional ${MK_TESTS} conditional idiom for including testdirectories to SUBDIR.${MK_TESTS} idiomThis is being done to pave the way for future work (and homogenity) in^/projects/make-check-sandbox .No functional change intended.MFC after: 1 weeks
Fix two CURDIR references in comments that should be SRCTOPreferences.Differential Revision: https://reviews.freebsd.org/D9932Sponsored by: NetflixSilence On: arch@ (twice)
Increase WARNS for libpathconv testsATF tests have a default WARNS of 0, unlike other usermode programs.Reviewed by: ngie, julianMFC after: 3 weeksSponsored by: Spectra Logic CorporationDi
Increase WARNS for libpathconv testsATF tests have a default WARNS of 0, unlike other usermode programs.Reviewed by: ngie, julianMFC after: 3 weeksSponsored by: Spectra Logic CorporationDifferential Revision: https://reviews.freebsd.org/D9933
This little BSD licensed library has been kicking around for years.It allows one to trivially convert an absolute path to a relative pathand the reverse. The test programs themselves are very usefu
This little BSD licensed library has been kicking around for years.It allows one to trivially convert an absolute path to a relative pathand the reverse. The test programs themselves are very useful in scriptsbut the real use comes shortly with the -r and -a arguments to ln.These are sometimes known as the --relative and --absolute flags andcan force a symlink to be relative when you only have an absolue path.Another place these are sometimes used is to add -a and -r args to 'realpath'.Incredibly useful in Makefiles.I was going to just add the files in with 'ln' but a library makes more sense.The test programs may come out in their own right some day for scripting.released under a BSD 2-clause: * Copyright (c) 1997 Shigio Yamaguchi. All rights reserved. * Copyright (c) 1999 Tama Communications Corporation. All rights reserved.The test directry does not conform to any framework.Not connected to build.doc people may want to play with the manual pages.Obtained from: https://www.tamacom.com/pathconvert.html Shigio Yamaguchi.MFC after: 1 monthRelnotes: yesSponsored by: Panzura, Tama Communications Corporation