diff options
author | OKAZAKI Tetsurou <okazaki@FreeBSD.org> | 2002-09-06 12:56:13 +0000 |
---|---|---|
committer | OKAZAKI Tetsurou <okazaki@FreeBSD.org> | 2002-09-06 12:56:13 +0000 |
commit | 3d91907984a2169b8321c92d2c1a673c8584577c (patch) | |
tree | 4cb4acadf8c994aae3c59a103857406d432f7111 /german | |
parent | e675f0bc21592fa3255067af60a12e8cf237fb08 (diff) |
Fix a syntax error of the Makefile.
String comparison operator should be either == or !=.
PR: 33519, 40844
Submitted by: Vivek Khera <khera@kciLink.com>,
"Matthew D.Fuller" <fullermd@over-yonder.net>
Approved by: maintainer
Notes
Notes:
svn path=/head/; revision=65726
Diffstat (limited to 'german')
-rw-r--r-- | german/BBBike/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/german/BBBike/Makefile b/german/BBBike/Makefile index effc87fd8482..2c6fcc222659 100644 --- a/german/BBBike/Makefile +++ b/german/BBBike/Makefile @@ -22,7 +22,7 @@ MAN1= bbbike.1 MYDESTDIR= ${PREFIX}/BBBike -.if !defined(PERL_VERSION) || ${PERL_VERSION} <= 5.00503 +.if !defined(PERL_VER) || ${PERL_VER} == 5.005 PLIST= ${PKGDIR}/pkg-plist.5005 .endif |