Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 1 Dec 2015 22:50:32 +0000 (UTC)
From:      Bryan Drewery <bdrewery@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r291622 - head/libexec/rtld-elf
Message-ID:  <201512012250.tB1MoWBT021831@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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>



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201512012250.tB1MoWBT021831>