d7f1d8f658
The previous commit enabled non-root builds to work, but broke builds by root instead. The ${GID} variable is blank when the user is root, so the replacement of "root" with ${GID} resulted in bad command. Just use ${BSD_INSTALL_PROGRAM} instead and revbump because the packaged binaries could be stripped now because of that. Commit covered by the "Just fix it" blanket.
11 lines
263 B
Text
11 lines
263 B
Text
--- Makefile.orig 2000-12-07 23:29:34.000000000 +0000
|
|
+++ Makefile
|
|
@@ -40,7 +40,7 @@ man:
|
|
|
|
install: links
|
|
.for TMPINS in ${LINKS}
|
|
- install -c -o root -g wheel -m 0755 ${TMPINS} ${INSTALLDIR}
|
|
+ ${BSD_INSTALL_PROGRAM} ${TMPINS} ${INSTALLDIR}
|
|
.endfor
|
|
|
|
links:
|