summaryrefslogtreecommitdiffstats
path: root/kernel/link
diff options
context:
space:
mode:
authorMichele Calgaro <[email protected]>2023-05-19 10:00:34 +0900
committerMichele Calgaro <[email protected]>2023-05-19 17:55:47 +0900
commite14b6685fea737b0087c44b3db4c14ef0a53463e (patch)
treeb4e8307ff7c26d45bb2897bd315ae0932732e3be /kernel/link
parentfa69d809c78de91a637bfc7d9ad961e4682c0789 (diff)
downloadlibksquirrel-e14b6685fea737b0087c44b3db4c14ef0a53463e.tar.gz
libksquirrel-e14b6685fea737b0087c44b3db4c14ef0a53463e.zip
Removed unnecessary files
Signed-off-by: Michele Calgaro <[email protected]> (cherry picked from commit 0d3ac8f304e1726db2f4849950435c2fa232855e)
Diffstat (limited to 'kernel/link')
-rwxr-xr-xkernel/link24
1 files changed, 0 insertions, 24 deletions
diff --git a/kernel/link b/kernel/link
deleted file mode 100755
index 9256b03..0000000
--- a/kernel/link
+++ /dev/null
@@ -1,24 +0,0 @@
-#!/bin/sh
-
-# create symlinks from all codecs (bmp/.libs/libkls_bmp.so, ...)
-# to /usr/lib/ksquirrel-libs/
-#
-# Can be used by developers
-#
-# Usage:
-# $ cd ksquirrel-libs/kernel/
-# $ ./link
-#
-
-KSQUIRREL_LIBS="/usr/lib/ksquirrel-libs/"
-
-rm -f $KSQUIRREL_LIBS/*
-
-mkdir $KSQUIRREL_LIBS > /dev/null 2>&1
-
-for i in avs bmp camera cut dds dicom eps fli gif hdr ico iff fig jbig jpeg jpeg2000 koala ljpeg lif mac mdl mng msp mtv openexr pcx pix png pnm psd psp pxr ras rawrgb sct sgi sun svg tga tiff ttf utah wal wbmp wmf xbm xcur xpm xwd djvu dxf xcf neo leaf pi1 pi3 xim pict;
-do echo "Linking libkls_$i.so ..." && ln -s `pwd`/kls_$i/.libs/libkls_$i.so $KSQUIRREL_LIBS;
-done
-
-rm -f /usr/lib/libksquirrel-libs.so
-ln -s `pwd`/ksquirrel-libs/.libs/libksquirrel-libs.so /usr/lib