svn commit: r313542 - stable/11/gnu/usr.bin/gdb/gdbserver

Ngie Cooper ngie at FreeBSD.org
Fri Feb 10 07:58:46 UTC 2017


Author: ngie
Date: Fri Feb 10 07:58:45 2017
New Revision: 313542
URL: https://svnweb.freebsd.org/changeset/base/313542

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

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

Modified: stable/11/gnu/usr.bin/gdb/gdbserver/Makefile
==============================================================================
--- stable/11/gnu/usr.bin/gdb/gdbserver/Makefile	Fri Feb 10 07:57:14 2017	(r313541)
+++ stable/11/gnu/usr.bin/gdb/gdbserver/Makefile	Fri Feb 10 07:58:45 2017	(r313542)
@@ -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-all mailing list