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:   abs
Date:           Fri Oct 18 08:18:53 UTC 2024

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

Log Message:
Fix endif/endfor mismatch in lang/rust/platform.mk

There may still be semantic issues, but the syntax is now OK


To generate a diff of this commit:
cvs rdiff -u -r1.28 -r1.29 pkgsrc/lang/rust/platform.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/platform.mk
diff -u pkgsrc/lang/rust/platform.mk:1.28 pkgsrc/lang/rust/platform.mk:1.29
--- pkgsrc/lang/rust/platform.mk:1.28   Fri Oct 18 08:07:24 2024
+++ pkgsrc/lang/rust/platform.mk        Fri Oct 18 08:18:53 2024
@@ -1,4 +1,4 @@
-# $NetBSD: platform.mk,v 1.28 2024/10/18 08:07:24 nia Exp $
+# $NetBSD: platform.mk,v 1.29 2024/10/18 08:18:53 abs Exp $
 
 # This file encodes whether a given platform has support for rust.
 
@@ -12,15 +12,15 @@
 .  for rust_arch in aarch64 earmv7hf i386 powerpc riscv64 sparc64 x86_64
 RUST_PLATFORMS+=       NetBSD-*-${rust_arch}
 .  endfor
-.endfor
+.endif
 
 .for rust_arch in aarch64 earmv7hf i386 x86_64
 RUST_PLATFORMS+=       Linux-*-${rust_arch}
-. endif
+.endfor
 
 .for rust_arch in aarch64 x86_64
 RUST_PLATFORMS+=       Darwin-*-${rust_arch}
-.endif
+.endfor
 
 RUST_PLATFORMS+=       FreeBSD-*-x86_64
 RUST_PLATFORMS+=       SunOS-*-x86_64



Home | Main Index | Thread Index | Old Index