diff options
author | Kevin Lo <kevlo@FreeBSD.org> | 2002-02-15 06:43:04 +0000 |
---|---|---|
committer | Kevin Lo <kevlo@FreeBSD.org> | 2002-02-15 06:43:04 +0000 |
commit | e9cf93b23b9b51fe4192f673a976f49ca3a01206 (patch) | |
tree | be14041d84d19369f5c767039b46a36d4e412641 /www | |
parent | Make this port keep up with the version of audio/timidity++. (diff) |
- Change exect to execve because of SIGTRAP on 4.5
- Bump port revision
PR: 34896
Submitted by: MAINTAINER
Notes
Notes:
svn path=/head/; revision=54725
Diffstat (limited to 'www')
-rw-r--r-- | www/moinmoin/Makefile | 2 | ||||
-rw-r--r-- | www/moinmoin/files/wrapper.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/www/moinmoin/Makefile b/www/moinmoin/Makefile index 48a8ad67661b..2df5f87f217d 100644 --- a/www/moinmoin/Makefile +++ b/www/moinmoin/Makefile @@ -7,7 +7,7 @@ PORTNAME= moinmoin PORTVERSION= 0.10 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= www python MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} MASTER_SITE_SUBDIR= moin diff --git a/www/moinmoin/files/wrapper.c b/www/moinmoin/files/wrapper.c index 3f41506f652c..6ee4f1e7e2de 100644 --- a/www/moinmoin/files/wrapper.c +++ b/www/moinmoin/files/wrapper.c @@ -9,5 +9,5 @@ main(int argc, char *argv[], char *envp[]) { char *margv[] = { PYTHON_PATH, SCRIPT_PATH, NULL }; - return exect(PYTHON_PATH, margv, envp); + return execve(PYTHON_PATH, margv, envp); } |