pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc/devel/cmake



Module Name:    pkgsrc
Committed By:   jperkin
Date:           Thu Aug  4 09:22:33 UTC 2022

Modified Files:
        pkgsrc/devel/cmake: Makefile

Log Message:
cmake: Don't strip if INSTALL_UNSTRIPPED=yes.


To generate a diff of this commit:
cvs rdiff -u -r1.195 -r1.196 pkgsrc/devel/cmake/Makefile

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/devel/cmake/Makefile
diff -u pkgsrc/devel/cmake/Makefile:1.195 pkgsrc/devel/cmake/Makefile:1.196
--- pkgsrc/devel/cmake/Makefile:1.195   Thu Aug  4 08:55:12 2022
+++ pkgsrc/devel/cmake/Makefile Thu Aug  4 09:22:33 2022
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.195 2022/08/04 08:55:12 adam Exp $
+# $NetBSD: Makefile,v 1.196 2022/08/04 09:22:33 jperkin Exp $
 
 .include "Makefile.common"
 
@@ -10,7 +10,6 @@ HAS_CONFIGURE=                yes
 CONFIGURE_SCRIPT=      bootstrap
 
 BUILD_TARGET=          default_target
-INSTALL_TARGET=                install/strip
 
 CONFIGURE_HAS_MANDIR=  no
 CONFIGURE_ARGS+=       --bootstrap-system-libuv
@@ -28,6 +27,10 @@ LDFLAGS.SunOS+=              -lsocket -lnsl
 
 .include "../../mk/bsd.prefs.mk"
 
+.if ${INSTALL_UNSTRIPPED:Uno:tl} != yes
+INSTALL_TARGET=                install/strip
+.endif
+
 # Enforce arm64 to support building inside x86_64 chroots.
 .if !empty(MACHINE_PLATFORM:MDarwin-*-aarch64)
 CONFIGURE_ENV+=                CMAKE_OSX_ARCHITECTURES=arm64



Home | Main Index | Thread Index | Old Index