summaryrefslogtreecommitdiffstats
path: root/src/extension/script/wrap_swig_module.sh
diff options
context:
space:
mode:
authorBob Jamison <ishmalius@gmail.com>2008-03-10 00:03:28 +0000
committerishmal <ishmal@users.sourceforge.net>2008-03-10 00:03:28 +0000
commit5421346cad32ea60be596291c74200bed21c2ef2 (patch)
treeaaa13c90610c1e087007608851b36dc1f24e1f82 /src/extension/script/wrap_swig_module.sh
parentDon't steal 'del' key in pen context when there is no curve being drawn (clos... (diff)
downloadinkscape-5421346cad32ea60be596291c74200bed21c2ef2.tar.gz
inkscape-5421346cad32ea60be596291c74200bed21c2ef2.zip
Switch to newer binding stuff
(bzr r5016)
Diffstat (limited to 'src/extension/script/wrap_swig_module.sh')
-rw-r--r--src/extension/script/wrap_swig_module.sh27
1 files changed, 0 insertions, 27 deletions
diff --git a/src/extension/script/wrap_swig_module.sh b/src/extension/script/wrap_swig_module.sh
deleted file mode 100644
index 8c6236f2d..000000000
--- a/src/extension/script/wrap_swig_module.sh
+++ /dev/null
@@ -1,27 +0,0 @@
-#!/bin/sh
-
-inf=$1
-outf=$2
-datestr=`date`
-
-echo "" > ${outf}
-echo "/* ###################################################" >> ${outf}
-echo "## This file generated by wrap_swig_module.sh from" >> ${outf}
-echo "## ${inf} on ${datestr}" >> ${outf}
-echo "## DO NOT EDIT" >> ${outf}
-echo "################################################### */" >> ${outf}
-echo "" >> ${outf}
-
-echo "static char *inkscape_module_script =" >> ${outf}
-echo "\"\n\"" >> ${outf}
-
-cat ${inf} | \
-sed -e 's/\"/\\"/g' -e 's/^/\"/g' -e 's/$/\\n\"/g' >> ${outf}
-
-echo "\"\n\";" >> ${outf}
-
-
-
-
-
-