Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 26 Mar 2018 23:23:11 +0000 (UTC)
From:      Hans Petter Selasky <hselasky@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-11@freebsd.org
Subject:   svn commit: r331601 - stable/11/include
Message-ID:  <201803262323.w2QNNBlJ008582@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: hselasky
Date: Mon Mar 26 23:23:11 2018
New Revision: 331601
URL: https://svnweb.freebsd.org/changeset/base/331601

Log:
  Fix buildworld after r331586 by adapting the installation of
  dev/mlx5/mlx5io.h to the build system in FreeBSD 11-stable.
  
  This is a direct commit.
  
  Found by:	jhb@
  Pointy hat:	hselasky@
  Sponsored by:   Mellanox Technologies

Modified:
  stable/11/include/Makefile

Modified: stable/11/include/Makefile
==============================================================================
--- stable/11/include/Makefile	Mon Mar 26 23:20:37 2018	(r331600)
+++ stable/11/include/Makefile	Mon Mar 26 23:23:11 2018	(r331601)
@@ -254,9 +254,9 @@ copies: .PHONY .META
 	    ${DESTDIR}${INCLUDEDIR}/sys
 .endif
 .if ${MK_MLX5TOOL} != "no"
-	cd ${SRCTOP}/sys/dev/mlx5; \
+	cd ${.CURDIR}/../sys/dev/mlx5; \
 	${INSTALL} -C ${TAG_ARGS} -o ${BINOWN} -g ${BINGRP} -m 444 mlx5io.h \
-	    ${SDESTDIR}${INCLUDEDIR}/dev/mlx5
+	    ${DESTDIR}${INCLUDEDIR}/dev/mlx5
 .endif
 
 symlinks: .PHONY .META
@@ -389,7 +389,7 @@ symlinks: .PHONY .META
 	done
 .if ${MK_MLX5TOOL} != "no"
 	${INSTALL_SYMLINK} ${TAG_ARGS} ../../../../sys/dev/mlx5/mlx5io.h \
-	    ${SDESTDIR}${INCLUDEDIR}/dev/mlx5
+	    ${DESTDIR}${INCLUDEDIR}/dev/mlx5
 .endif
 
 .include <bsd.prog.mk>



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