diff options
author | dirk <dirk@FreeBSD.org> | 2001-12-22 00:10:24 +0800 |
---|---|---|
committer | dirk <dirk@FreeBSD.org> | 2001-12-22 00:10:24 +0800 |
commit | cce16f99a293400f86e94b716f9afc5442dcc2c7 (patch) | |
tree | 2fecce49352afe17f9459296867fc6c3fa1f04ce /lang | |
parent | 3796a754c609ec3a0f90274ced71bc1f67dcd091 (diff) | |
download | freebsd-ports-gnome-cce16f99a293400f86e94b716f9afc5442dcc2c7.tar.gz freebsd-ports-gnome-cce16f99a293400f86e94b716f9afc5442dcc2c7.tar.zst freebsd-ports-gnome-cce16f99a293400f86e94b716f9afc5442dcc2c7.zip |
Use correct comparison operator ('=' -> '==').
Reported by: Dan Langille <dan@langille.org>
Diffstat (limited to 'lang')
-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 |