svn commit: r298129 - head/tools/kerneldoc/subsys

Alexander Leidinger netchild at FreeBSD.org
Sat Apr 16 20:41:15 UTC 2016


Author: netchild
Date: Sat Apr 16 20:41:13 2016
New Revision: 298129
URL: https://svnweb.freebsd.org/changeset/base/298129

Log:
  Quote variable for architectures where we have more than
  one linuxulator (32/64bit) and as such may have a space
  between both linuxulator locations.
  
  Noticed by:	Miltiadis Margaronis <mmargaron at gmail.com>
  Tested by:	Miltiadis Margaronis <mmargaron at gmail.com>

Modified:
  head/tools/kerneldoc/subsys/Makefile

Modified: head/tools/kerneldoc/subsys/Makefile
==============================================================================
--- head/tools/kerneldoc/subsys/Makefile	Sat Apr 16 20:01:08 2016	(r298128)
+++ head/tools/kerneldoc/subsys/Makefile	Sat Apr 16 20:41:13 2016	(r298129)
@@ -58,7 +58,7 @@ ${.OBJDIR}/${target}/${target}.tag:
 		    DOXYGEN_DEST_PATH=${DOXYGEN_DEST_PATH} \
 		    DOXYGEN_SRC_INCLUDE_PATH="${S}/sys ${S}/../include ${S}/${TARGET_ARCH}/include ${.OBJDIR}/include" \
 		    DOXYGEN_TARGET_ARCH=${TARGET_ARCH} \
-		    DOXYGEN_LINUX_PATH=${DOXYGEN_LINUX_PATH} \
+		    DOXYGEN_LINUX_PATH="${DOXYGEN_LINUX_PATH}" \
 		    NOTREVIEWED=${.CURDIR}/notreviewed.dox \
 		    PATH=${LOCALBASE}/bin:${PATH} \
 			doxygen ${.CURDIR}/Doxyfile-${target}


More information about the svn-src-all mailing list