Module Name: src Committed By: rillig Date: Sat Nov 7 12:47:16 UTC 2020
Modified Files: src/usr.bin/make: arch.c Log Message: make(1): fix archive handling It's no wonder that nobody is using the archive handling of make. The archives created by GNU binutils cannot be processed using make since the format of the archive names has changed. GNU binutils appends a slash to the member names. Support that format from now on. Add more debugging output in ArchFindMember. Since nobody uses this part of make, it doesn't hurt that the debug output is now very verbose. In Arch_Touch and Arch_TouchLib, move the snprintf to where it belongs. There's no point modifying a local variable just to throw it away afterwards. To generate a diff of this commit: cvs rdiff -u -r1.158 -r1.159 src/usr.bin/make/arch.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.