Wanting to learn about porting, I am following: How to Create an OpenBSD Port and
Package from http://undeadly.org/cgi?action=article&sid=20080318060000
Ran into problem with:
# Install myscripts under /usr/local/.
do-install:
${INSTALL_SCRIPT} ${WRKSRC}/bin/* ${PREFIX}/bin/
${INSTALL_DATA_DIR} ${PREFIX}/share/myscripts/
${INSTALL_DATA} ${WRKSRC}/share/myscripts/* ${PREFIX}/share/myscripts/
When I run make makesum, I get:
$ sudo make makesum
"Makefile", line 179: Need an operator
"Makefile", line 180: Need an operator
"Makefile", line 181: Need an operator
Fatal errors encountered -- cannot continue
referring to the three lines above.
How do I fix this?