diff options
author | Darrell Anderson <humanreadable@yahoo.com> | 2014-02-01 23:48:59 -0600 |
---|---|---|
committer | Darrell Anderson <humanreadable@yahoo.com> | 2014-02-01 23:48:59 -0600 |
commit | 83f044c559e90ca2d0392c5cf869c2c0bf352820 (patch) | |
tree | 56c5b54b068b1803d9fbe4f86df557df215c42d9 | |
parent | e7d13c51407ede230e1cbd01c1e58396d3c4688b (diff) | |
download | tdebase-83f044c559e90ca2d0392c5cf869c2c0bf352820.tar.gz tdebase-83f044c559e90ca2d0392c5cf869c2c0bf352820.zip |
Update path location for htsearch used by help indexing.
-rwxr-xr-x | khelpcenter/searchhandlers/khc_htsearch.pl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/khelpcenter/searchhandlers/khc_htsearch.pl b/khelpcenter/searchhandlers/khc_htsearch.pl index b7ea694b3..5dc3f5f71 100755 --- a/khelpcenter/searchhandlers/khc_htsearch.pl +++ b/khelpcenter/searchhandlers/khc_htsearch.pl @@ -8,8 +8,7 @@ use Getopt::Long; use open IO => ':utf8'; use open ':std'; -my $htsearchpath="/usr/lib/cgi-bin/htsearch"; - +my $htsearchpath="/srv/www/cgi-bin/htsearch"; my $config; my $format; my $method; @@ -20,6 +19,7 @@ my $indexdir; my $maxnum; GetOptions ( + 'binary=s' => \$htsearchpath, 'config=s' => \$config, 'format=s' => \$format, 'method=s' => \$method, |