Date: Fri, 4 May 2018 13:34:33 +0000 (UTC) From: Steven Kreuzer <skreuzer@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r469029 - head/devel/cpu_features Message-ID: <201805041334.w44DYXd3014833@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
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@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.
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201805041334.w44DYXd3014833>