pkgsrc-Users archive

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

[PATCH] wip/vis-editor



Hi all,
when building `wip/vis-editor` i'm getting

```
mbauhardt@odin ~/.../wip/vis-editor (master) $ bmake
bmake: "/arpa/m/mbauhardt/OS/pkgsrc/wip/vis-editor/Makefile" line 64: Could not find ../../wip/libtermkey/buildlink3.mk
bmake: Fatal errors encountered -- cannot continue
bmake: stopped in /arpa/m/mbauhardt/OS/pkgsrc/wip/vis-editor
```

looks like the path to `libtermkey` is incorrect. 
not sure if patches via this mailing list is the convenient way to communicate, anyway here is a patch which could fix the issue.

```
From dbc7f2bdb3b3dd11cb37779f2b1b9a43e0b4d512 Mon Sep 17 00:00:00 2001
From: Marko Bauhardt <mbauhardt%odin.sdf-eu.org@localhost>
Date: Mon, 28 Nov 2022 07:47:44 +0000
Subject: [PATCH] wip/vis-editor correction: Adjust path to libtermkey

---
 vis-editor/Makefile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/vis-editor/Makefile b/vis-editor/Makefile
index ae7ab1bf09..bfc63941ae 100644
--- a/vis-editor/Makefile
+++ b/vis-editor/Makefile
@@ -61,5 +61,5 @@ post-install:

 .include "../../lang/lua/buildlink3.mk"
 .include "../../mk/curses.buildlink3.mk"
-.include "../../wip/libtermkey/buildlink3.mk"
+.include "../../devel/libtermkey/buildlink3.mk"
 .include "../../mk/bsd.pkg.mk"
--
2.37.0

```

marko


Home | Main Index | Thread Index | Old Index