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
This commit is contained in:
OKAZAKI Tetsurou 2002-09-06 12:56:13 +00:00
parent e675f0bc21
commit 3d91907984
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=65726

View File

@ -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