Subject: | Makefile typo |
Date: | Wed, 7 Oct 2009 19:43:34 -0500 |
To: | bug-javascript [...] rt.cpan.org |
From: | Steve Swantz <bluecanoe [...] comcast.net> |
Claes
Line 88:
push @incs, "/opt/local/include/spidermonkey";
I believe it should be:
push @incs, "/opt/local/include/spidermonkey/";
(note trailing slash.)
I'm basing this on my experience with these lines I added at line 92:
# test for MacPorts
if (-d "/opt/local/include/js") {
push @incs, "/opt/local/include/js/";
push @libs, "/opt/local/lib";
}
Without the trailing slash make would fail with:
luna:JavaScript-1.12 steve$ make
Makefile:1015: *** target file `Makefile' has both : and :: entries.
Stop.
Thanks,
Steve