diff options
author | fenner <fenner@FreeBSD.org> | 2000-03-20 05:32:03 +0000 |
---|---|---|
committer | fenner <fenner@FreeBSD.org> | 2000-03-20 05:32:03 +0000 |
commit | 90a2756b1f7e2d7d1410ab7b8b6fdb900844c697 (patch) | |
tree | 7148f33a54d5e096122c818fd45e94f459c9256d /net/sdr | |
parent | b454f524092d8e10115a0fffb99503d7e5c42467 (diff) | |
download | FreeBSD-ports-90a2756b1f7e2d7d1410ab7b8b6fdb900844c697.zip FreeBSD-ports-90a2756b1f7e2d7d1410ab7b8b6fdb900844c697.tar.gz |
Fix sdr:tcl_parsed_plugins can't read "(CRYPTKEY)": no such variable
Diffstat (limited to 'net/sdr')
-rw-r--r-- | net/sdr/files/patch-ac | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/net/sdr/files/patch-ac b/net/sdr/files/patch-ac new file mode 100644 index 0000000..8499cce --- /dev/null +++ b/net/sdr/files/patch-ac @@ -0,0 +1,11 @@ +--- ../src/plugin2tcl.tcl.orig Sun Mar 19 20:33:42 2000 ++++ ../src/plugin2tcl.tcl Sun Mar 19 20:35:39 2000 +@@ -8,7 +8,7 @@ + puts $file "set createrules \"$createrules\"" + foreach ary {tooldata mediadata fmts protos protonames fmtnames mappings attrs attrnames attrvaluenames attrflags noattrflags noattrlist defattrlist withattrs macros macrokeys fmtlayers} { + foreach key [array names $ary] { +- puts $file "set [set ary]($key) \"[set [set ary]($key)]\"" ++ puts $file [list set [set ary]($key) [set [set ary]($key)]] + } + } + close $file |