svn commit: r313630 - stable/10/gnu/usr.bin/gdb/gdbserver

Ngie Cooper ngie at FreeBSD.org
Sat Feb 11 07:13:13 UTC 2017


Author: ngie
Date: Sat Feb 11 07:13:12 2017
New Revision: 313630
URL: https://svnweb.freebsd.org/changeset/base/313630

Log:
  MFC r312514:
  
  Use SRCTOP-relative paths to other directories instead of .CURDIR-relative ones
  
  This simplifies pathing in make/displayed output

Modified:
  stable/10/gnu/usr.bin/gdb/gdbserver/Makefile
Directory Properties:
  stable/10/   (props changed)

Modified: stable/10/gnu/usr.bin/gdb/gdbserver/Makefile
==============================================================================
--- stable/10/gnu/usr.bin/gdb/gdbserver/Makefile	Sat Feb 11 07:11:43 2017	(r313629)
+++ stable/10/gnu/usr.bin/gdb/gdbserver/Makefile	Sat Feb 11 07:13:12 2017	(r313630)
@@ -3,7 +3,7 @@
 # Not elf specific so don't install in /usr/libexec/elf
 BINDIR=/usr/bin
 
-GDBDIR=	${.CURDIR}/../../../../contrib/gdb
+GDBDIR=	${SRCTOP}/contrib/gdb
 .PATH:	${GDBDIR}/gdb/signals
 .PATH:	${GDBDIR}/gdb/gdbserver
 .PATH:	${GDBDIR}/gdb


More information about the svn-src-stable-10 mailing list