svn commit: r291622 - head/libexec/rtld-elf

Bryan Drewery bdrewery at FreeBSD.org
Tue Dec 1 22:50:33 UTC 2015


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>


More information about the svn-src-all mailing list