Module Name: src
Committed By: riastradh
Date: Mon Sep 4 18:16:54 UTC 2023
Modified Files:
src/lib/libc_aligned: Makefile
src/lib/libc_fp: Makefile
Log Message:
libc_aligned, libc_fp: Add missing close-paren.
Did this ever work?
To generate a diff of this commit:
cvs rdiff -u -r1.1 -r1.2 src/lib/libc_aligned/Makefile
cvs rdiff -u -r1.1 -r1.2 src/lib/libc_fp/Makefile
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/lib/libc_aligned/Makefile
diff -u src/lib/libc_aligned/Makefile:1.1 src/lib/libc_aligned/Makefile:1.2
--- src/lib/libc_aligned/Makefile:1.1 Mon May 30 15:06:55 2022
+++ src/lib/libc_aligned/Makefile Mon Sep 4 18:16:53 2023
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.1 2022/05/30 15:06:55 rin Exp $
+# $NetBSD: Makefile,v 1.2 2023/09/04 18:16:53 riastradh Exp $
#
# libc routines with strictly aligned memory access
@@ -15,7 +15,7 @@ LIBC_MACHINE_CPU?= ${MACHINE_CPU}
.elif exists(arch/${MACHINE_ARCH})
.include "arch/${MACHINE_ARCH}/Makefile.inc"
.PATH: ${.CURDIR}/arch/${MACHINE_ARCH}
-.elif exists(arch/${MACHINE}
+.elif exists(arch/${MACHINE})
.include "arch/${MACHINE}/Makefile.inc"
.PATH: ${.CURDIR}/arch/${MACHINE}
.endif
Index: src/lib/libc_fp/Makefile
diff -u src/lib/libc_fp/Makefile:1.1 src/lib/libc_fp/Makefile:1.2
--- src/lib/libc_fp/Makefile:1.1 Thu Jul 14 01:59:18 2016
+++ src/lib/libc_fp/Makefile Mon Sep 4 18:16:53 2023
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.1 2016/07/14 01:59:18 matt Exp $
+# $NetBSD: Makefile,v 1.2 2023/09/04 18:16:53 riastradh Exp $
#
USE_SHLIBDIR= yes
@@ -13,7 +13,7 @@ LIBC_MACHINE_CPU?= ${MACHINE_CPU}
.elif exists(arch/${MACHINE_ARCH})
.include "arch/${MACHINE_ARCH}/Makefile.inc"
.PATH: ${.CURDIR}/arch/${MACHINE_ARCH}
-.elif exists(arch/${MACHINE}
+.elif exists(arch/${MACHINE})
.include "arch/${MACHINE}/Makefile.inc"
.PATH: ${.CURDIR}/arch/${MACHINE}
.endif