diff options
author | Akinori MUSHA <knu@FreeBSD.org> | 2001-03-03 09:45:51 +0000 |
---|---|---|
committer | Akinori MUSHA <knu@FreeBSD.org> | 2001-03-03 09:45:51 +0000 |
commit | 939093935f0a96cbac33dbcf2a3ac93c8e8c33ea (patch) | |
tree | 0f12cf4ed3e65cf1c033b7d3c53721bb904be33f /www | |
parent | Remove bogus WWW: URL. (diff) |
Avoid the use of `!=' assignment where it's possible. Some old
make(1) seems to have a messy problem with it.
Submitted by: FreshPorts
Notes
Notes:
svn path=/head/; revision=39011
Diffstat (limited to 'www')
-rw-r--r-- | www/pruby/Makefile | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/www/pruby/Makefile b/www/pruby/Makefile index 295f953f3124..5e4c0339a125 100644 --- a/www/pruby/Makefile +++ b/www/pruby/Makefile @@ -24,19 +24,21 @@ USE_RUBY= yes PHP4_PORTDIR= ${.CURDIR}/../../lang/php4 MOD_PHP4_PORTDIR= ${.CURDIR}/../mod_php4 -MOD_PHP4_WRKSRC!= cd ${MOD_PHP4_PORTDIR} && ${MAKE} -V WRKSRC +MOD_PHP4_WRKSRC_CMD= cd ${MOD_PHP4_PORTDIR} && ${MAKE} -V WRKSRC DOCS_EN= README contrib/_htaccess pre-everything: - ${MKDIR} ${MOD_PHP4_WRKSRC} - ${TOUCH} ${MOD_PHP4_WRKSRC}/../../Makefile.inc + dir=`${MOD_PHP4_WRKSRC_CMD}`; \ + ${MKDIR} $${dir}; \ + ${TOUCH} $${dir}/../../Makefile.inc do-configure: cd ${WRKSRC} && ( \ + dir=`${MOD_PHP4_WRKSRC_CMD}`; \ php contrib/phpinfo.php > phpinfo.out; \ ( \ - ${ECHO} "PHP4_SRC=${MOD_PHP4_WRKSRC}"; \ + ${ECHO} "PHP4_SRC=$${dir}"; \ ${ECHO} "PHP4_CONFIGURED=yes"; \ ${ECHO} "RUBY_SRC="; \ ${ECHO} "RUBY=${RUBY}"; \ |