diff options
Diffstat (limited to 'repo/system/tcl.xibuild')
-rw-r--r-- | repo/system/tcl.xibuild | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/repo/system/tcl.xibuild b/repo/system/tcl.xibuild index 1ab5d34..6495948 100644 --- a/repo/system/tcl.xibuild +++ b/repo/system/tcl.xibuild @@ -40,13 +40,14 @@ check () { package () { make DESTDIR=$PKG_DEST install - chmod -v u+w $PKG_DEST/usr/lib/libtcl$(echo $PKG_DEST | cut -d. -f-2).so + chmod u+w $PKG_DEST/usr/lib/libtcl$(echo $PKG_DEST | cut -d. -f-2).so make DESTDIR=$PKG_DEST install-private-headers 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 + mv $PKG_DEST/usr/share/man/man3/Thread.3 \ + $PKG_DEST/usr/share/man/man3/Tcl_Thread.3 } |