Module Name: src
Committed By: rin
Date: Tue Nov 22 15:41:05 UTC 2022
Modified Files:
src/lib/lua/libm: Makefile
Log Message:
Correct path for libm.
To generate a diff of this commit:
cvs rdiff -u -r1.1 -r1.2 src/lib/lua/libm/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/lua/libm/Makefile
diff -u src/lib/lua/libm/Makefile:1.1 src/lib/lua/libm/Makefile:1.2
--- src/lib/lua/libm/Makefile:1.1 Mon Nov 21 22:01:33 2022
+++ src/lib/lua/libm/Makefile Tue Nov 22 15:41:04 2022
@@ -1,7 +1,7 @@
-# $NetBSD: Makefile,v 1.1 2022/11/21 22:01:33 christos Exp $
+# $NetBSD: Makefile,v 1.2 2022/11/22 15:41:04 rin Exp $
LUA_MODULES = libm
LUA_SRCS.libm = libm.c
-LUA_DPLIBS += m /usr/lib
+LUA_DPLIBS += m ${.CURDIR}/../../libm
.include <bsd.lua.mk>