Author: bdrewery Date: Tue Dec 1 22:50:32 2015 New Revision: 291622 URL: https://svnweb.freebsd.org/changeset/base/291622
Log: Fix build after r291620. "don't know how to make /Versions.def. Stop" This was trying to define a target in bsd.symver.mk based on LIBCDIR which was not yet defined. Switching the order of inclusion of bsd.prog.mk and bsd.symver.mk fixes it and seems fine. Pointyhat to: bdrewery Sponsored by: EMC / Isilon Storage Division Modified: head/libexec/rtld-elf/Makefile Modified: head/libexec/rtld-elf/Makefile ============================================================================== --- head/libexec/rtld-elf/Makefile Tue Dec 1 22:39:19 2015 (r291621) +++ head/libexec/rtld-elf/Makefile Tue Dec 1 22:50:32 2015 (r291622) @@ -85,5 +85,5 @@ beforeinstall: SUBDIR+= tests .endif -.include <bsd.symver.mk> .include <bsd.prog.mk> +.include <bsd.symver.mk> _______________________________________________ svn-src-head@freebsd.org mailing list https://lists.freebsd.org/mailman/listinfo/svn-src-head To unsubscribe, send any mail to "svn-src-head-unsubscr...@freebsd.org"