svn commit: r469029 - head/devel/cpu_features

Steven Kreuzer skreuzer at FreeBSD.org
Fri May 4 13:34:34 UTC 2018


Author: skreuzer
Date: Fri May  4 13:34:33 2018
New Revision: 469029
URL: https://svnweb.freebsd.org/changeset/ports/469029

Log:
  Install the static library using INSTALL_DATA instead of INSTALL_LIB
  Fix typo in package description: C89->C99
  
  Reported by:	Adam Weinberger <adamw at adamw.org>

Modified:
  head/devel/cpu_features/Makefile
  head/devel/cpu_features/pkg-descr

Modified: head/devel/cpu_features/Makefile
==============================================================================
--- head/devel/cpu_features/Makefile	Fri May  4 13:16:42 2018	(r469028)
+++ head/devel/cpu_features/Makefile	Fri May  4 13:34:33 2018	(r469029)
@@ -16,7 +16,7 @@ GH_ACCOUNT=	google
 
 do-install:
 	${INSTALL_PROGRAM} ${WRKSRC}/list_cpu_features ${STAGEDIR}${PREFIX}/bin
-	${INSTALL_LIB} ${WRKSRC}/libcpu_features.a ${STAGEDIR}${PREFIX}/lib
+	${INSTALL_DATA} ${WRKSRC}/libcpu_features.a ${STAGEDIR}${PREFIX}/lib
 	${MKDIR} ${STAGEDIR}${PREFIX}/include/internal
 	${INSTALL_DATA} ${WRKSRC}/include/*.h ${STAGEDIR}${PREFIX}/include
 	${INSTALL_DATA} ${WRKSRC}/include/internal/*.h ${STAGEDIR}${PREFIX}/include/internal

Modified: head/devel/cpu_features/pkg-descr
==============================================================================
--- head/devel/cpu_features/pkg-descr	Fri May  4 13:16:42 2018	(r469028)
+++ head/devel/cpu_features/pkg-descr	Fri May  4 13:34:33 2018	(r469029)
@@ -1,5 +1,5 @@
 A small, fast, and simple open source library to report CPU features at
-runtime. Written in C89 for maximum portability, it allocates no memory and is
+runtime. Written in C99 for maximum portability, it allocates no memory and is
 suitable for implementing fundamental functions and running in sandboxed
 environments.
 


More information about the svn-ports-all mailing list