diff options
author | Steve Price <steve@FreeBSD.org> | 2000-08-08 03:11:55 +0000 |
---|---|---|
committer | Steve Price <steve@FreeBSD.org> | 2000-08-08 03:11:55 +0000 |
commit | 1605e0fca8fd466695153ec11a2693dc33093285 (patch) | |
tree | b479c17f177d83e2ef5e3b5d7afdeb6e11e0a39a | |
parent | time(3) returns a time_t and not a long. (diff) |
Add a missing ';' so this port builds/installs cleanly.
Notes
Notes:
svn path=/head/; revision=31408
-rw-r--r-- | comms/qpage/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/comms/qpage/Makefile b/comms/qpage/Makefile index e80b620fd93f..f07657b06615 100644 --- a/comms/qpage/Makefile +++ b/comms/qpage/Makefile @@ -21,7 +21,7 @@ post-install: @if [ ! -f ${PREFIX}/etc/rc.d/qpage.sh ]; then \ ${ECHO} "Install ${PREFIX}/etc/rc.d/qpage.sh startup file."; \ ${INSTALL_SCRIPT} -m 751 ${FILESDIR}/qpage.sh \ - ${PREFIX}/etc/rc.d/qpage.sh \ + ${PREFIX}/etc/rc.d/qpage.sh; \ fi .include <bsd.port.mk> |