Bug 64109 - math/algae make describe fails
Summary: math/algae make describe fails
Status: Closed FIXED
Alias: None
Product: Ports & Packages
Classification: Unclassified
Component: Individual Port(s) (show other bugs)
Version: Latest
Hardware: Any Any
: Normal Affects Only Me
Assignee: freebsd-ports-bugs (Nobody)
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2004-03-11 15:50 UTC by Scott Lipcon
Modified: 2004-03-17 12:47 UTC (History)
0 users

See Also:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Scott Lipcon 2004-03-11 15:50:09 UTC
make describe in /usr/ports/math/algae fails, causing index build to fail.

Fix: 

a space needs to be added to the conditional which changed in the last update to Makefile... it needs to be:

...  ${OSVERSION} > 502102 )

(notice the space after the 502102 and the right paren - without the space it treats it as a string "502102)" and > is invalid for strings, and then it doesn't find the right paren to end the conditional.
How-To-Repeat: cd /usr/ports/math/algae
make describe
[root@mercea]ports/math/algae# make describe                                                              10:44AM
"Makefile", line 26: warning: String comparison operator should be either == or !=
"Makefile", line 26: Malformed conditional ((${ARCH} == "alpha" && ${OSVERSION} > 502102) || ${ARCH} == "sparc64")
"Makefile", line 26: Need an operator
"Makefile", line 28: if-less endif
"Makefile", line 28: Need an operator
make: fatal errors encountered -- cannot continue
Comment 1 Kris Kennaway freebsd_committer freebsd_triage 2004-03-16 00:29:59 UTC
Responsible Changed
From-To: freebsd-bugs->freebsd-ports-bugs

Reassign misfiled PR
Comment 2 Mark Linimon freebsd_committer freebsd_triage 2004-03-17 12:46:52 UTC
State Changed
From-To: open->closed

Committed, thanks.