pkgsrc-Changes archive

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

CVS commit: pkgsrc/lang/rust



Module Name:    pkgsrc
Committed By:   wiz
Date:           Mon May 18 16:33:44 UTC 2020

Modified Files:
        pkgsrc/lang/rust: type.mk

Log Message:
rust: if variables are supposed to be overridable, set them with ?=


To generate a diff of this commit:
cvs rdiff -u -r1.1 -r1.2 pkgsrc/lang/rust/type.mk

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

Modified files:

Index: pkgsrc/lang/rust/type.mk
diff -u pkgsrc/lang/rust/type.mk:1.1 pkgsrc/lang/rust/type.mk:1.2
--- pkgsrc/lang/rust/type.mk:1.1        Mon May 18 16:17:20 2020
+++ pkgsrc/lang/rust/type.mk    Mon May 18 16:33:44 2020
@@ -1,4 +1,4 @@
-# $NetBSD: type.mk,v 1.1 2020/05/18 16:17:20 nia Exp $
+# $NetBSD: type.mk,v 1.2 2020/05/18 16:33:44 wiz Exp $
 # 
 # This file determines the type of rust package to use -
 # binary (as via rustup) or a source bootstrap.
@@ -20,9 +20,9 @@
 # The Rust bootstrapping process is often particularly slow
 # and unreliable on NetBSD due to ld.so bugs
 .  if !empty(MACHINE_PLATFORM:MNetBSD-*-x86_64)
-RUST_TYPE=     bin
+RUST_TYPE?=    bin
 .  else
-RUST_TYPE=     src
+RUST_TYPE?=    src
 .  endif
 
 .endif # !defined(RUST_TYPE)



Home | Main Index | Thread Index | Old Index