diff options
| author | Dirk Froemberg <dirk@FreeBSD.org> | 2001-12-21 16:10:24 +0000 |
|---|---|---|
| committer | Dirk Froemberg <dirk@FreeBSD.org> | 2001-12-21 16:10:24 +0000 |
| commit | 8f3e6fc39fe1f38fc2cd5d8c89520ee81a4a80af (patch) | |
| tree | 43eb3f776033a223371a9066f8873d4f50cf71b1 /lang/php_doc | |
| parent | Version is handled in master port, now. (diff) | |
Use correct comparison operator ('=' -> '==').
Reported by: Dan Langille <dan@langille.org>
Notes
Notes:
svn path=/head/; revision=51929
Diffstat (limited to 'lang/php_doc')
| -rw-r--r-- | lang/php_doc/Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lang/php_doc/Makefile b/lang/php_doc/Makefile index fecccbe3ac74..8c49f5e5de4d 100644 --- a/lang/php_doc/Makefile +++ b/lang/php_doc/Makefile @@ -27,16 +27,16 @@ PKGNAMEPREFIX= ${PHP_LANG}- PLIST= ${PKGDIR}/pkg-plist.${PHP_LANG} PHPDOCDIR= ${PREFIX}/share/doc/${PHP_LANG}-php -.if ${PHP_LANG} = de +.if ${PHP_LANG} == de PORTVERSION= 1.20011221 .endif -.if ${PHP_LANG} = es +.if ${PHP_LANG} == es PORTVERSION= 1.20011214 .endif -.if ${PHP_LANG} = fr +.if ${PHP_LANG} == fr PORTVERSION= 1.20011214 .endif -.if ${PHP_LANG} = ja +.if ${PHP_LANG} == ja PORTVERSION= 1.20011220 .endif .endif |
