svn commit: r277619 - stable/9/contrib/ofed/usr.lib/libibcm

Garrett Cooper ngie at FreeBSD.org
Fri Jan 23 23:09:39 UTC 2015


Author: ngie
Date: Fri Jan 23 23:09:38 2015
New Revision: 277619
URL: https://svnweb.freebsd.org/changeset/base/277619

Log:
  MFC r276804:
  
    Fix 'make depend' before infiniband headers have been installed to build host
    by removing space between -I and the header directory
  
    Sponsored by: EMC / Isilon Storage Division

Modified:
  stable/9/contrib/ofed/usr.lib/libibcm/Makefile
Directory Properties:
  stable/9/   (props changed)
  stable/9/contrib/   (props changed)

Modified: stable/9/contrib/ofed/usr.lib/libibcm/Makefile
==============================================================================
--- stable/9/contrib/ofed/usr.lib/libibcm/Makefile	Fri Jan 23 22:46:07 2015	(r277618)
+++ stable/9/contrib/ofed/usr.lib/libibcm/Makefile	Fri Jan 23 23:09:38 2015	(r277619)
@@ -15,7 +15,7 @@ SHLIB_MAJOR=	1
 NO_PROFILE=
 
 SRCS= cm.c
-CFLAGS+=	-I ${IBCMDIR}/include
+CFLAGS+=	-I${IBCMDIR}/include
 
 MAN=
 VERSION_MAP= ${IBSRCDIR}/libibcm.map


More information about the svn-src-all mailing list