Install the static library using INSTALL_DATA instead of INSTALL_LIB

Fix typo in package description: C89->C99

Reported by:	Adam Weinberger <adamw@adamw.org>
This commit is contained in:
Steven Kreuzer 2018-05-04 13:34:33 +00:00
parent fd6c7eed3e
commit 3cb722f33c
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=469029
2 changed files with 2 additions and 2 deletions

View File

@ -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

View File

@ -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.