summaryrefslogtreecommitdiff
path: root/repo
diff options
context:
space:
mode:
authordavidovski <david@davidovski.xyz>2021-12-07 22:01:22 +0000
committerdavidovski <david@davidovski.xyz>2021-12-07 22:01:22 +0000
commita14a0ef0ab3590f85dae1851d94128e2b541711c (patch)
tree6e80c07312f4bea6812349894f89840253bb0da8 /repo
parentb0dd524f77dc4a2654a798f243d58cceb13042db (diff)
fixed tclsh binary
Diffstat (limited to 'repo')
-rw-r--r--repo/core/tcl.xibuild3
-rw-r--r--repo/extra/vim.xibuild2
2 files changed, 3 insertions, 2 deletions
diff --git a/repo/core/tcl.xibuild b/repo/core/tcl.xibuild
index d5d0f7e..6dffe76 100644
--- a/repo/core/tcl.xibuild
+++ b/repo/core/tcl.xibuild
@@ -21,7 +21,8 @@ build () {
}
package () {
- cp -f tclsh8.6 $PKG_DEST/usr/bin/tclsh
+ ln $PKG_DEST/usr/bin/tclsh* $PKG_DEST/usr/bin/tclsh
+ cp -f tclsh9 $PKG_DEST/usr/bin/tclsh
mv $PKG_DEST/usr/share/man/man3/{Thread,Tcl_Thread}.3
}
diff --git a/repo/extra/vim.xibuild b/repo/extra/vim.xibuild
index a6e1baa..79b8467 100644
--- a/repo/extra/vim.xibuild
+++ b/repo/extra/vim.xibuild
@@ -7,7 +7,7 @@ DESC="Vi Improved"
build () {
echo '#define SYS_VIMRC_FILE "/etc/vimrc"' >> src/feature.h
- ./configure --prefix=/usr --disable-gtk-check --disable-motif-check --disable-athena-check --disable-gui
+ ./configure --prefix=/usr --disable-gtk-check --disable-motif-check --disable-athena-check --disable-gui --disable-xsmp
make
make DESTDIR=$PKG_DEST install
}