summaryrefslogtreecommitdiff
path: root/cgi
diff options
context:
space:
mode:
authorviega1998-06-02 10:10:00 +0000
committerviega1998-06-02 10:10:00 +0000
commited4591ce0fd2e36811f6d223f6e4c9fde1917dec (patch)
treeb80e4da4cb0361f76561cc4eec772525a9ccbae8 /cgi
parent20abd4865f1f3e8be158e7cf139702e624ae7b88 (diff)
downloadmailman-ed4591ce0fd2e36811f6d223f6e4c9fde1917dec.tar.gz
mailman-ed4591ce0fd2e36811f6d223f6e4c9fde1917dec.tar.zst
mailman-ed4591ce0fd2e36811f6d223f6e4c9fde1917dec.zip
Updated 1 line that was still using pre-autoconf paths.
Diffstat (limited to 'cgi')
-rwxr-xr-xcgi/subscribe2
1 files changed, 1 insertions, 1 deletions
diff --git a/cgi/subscribe b/cgi/subscribe
index 72b7dc7c5..3323d2853 100755
--- a/cgi/subscribe
+++ b/cgi/subscribe
@@ -65,7 +65,7 @@ results = ''
def call_script(which, pathinfo):
"A little bit of a hack to call one of the scripts..."
os.environ['PATH_INFO'] = string.join(pathinfo, '/')
- file = os.path.join(mm_cfg.MAILMAN_DIR, 'cgi/%s' % which)
+ file = os.path.join(paths.prefix, 'scripts/%s' % which)
list.Unlock()
execfile(file)
sys.exit(0)