diff options
author | asami <asami@FreeBSD.org> | 1995-05-16 10:31:25 +0000 |
---|---|---|
committer | asami <asami@FreeBSD.org> | 1995-05-16 10:31:25 +0000 |
commit | 0af6915b6e7941b392753b97664a4e21f2d2c099 (patch) | |
tree | bd3b008d67da4e0d3ee4e5702c16ee10f73e2e25 /Mk | |
parent | 155b02e25744d02396309497bf4d4f352792c280 (diff) | |
download | FreeBSD-ports-0af6915b6e7941b392753b97664a4e21f2d2c099.zip FreeBSD-ports-0af6915b6e7941b392753b97664a4e21f2d2c099.tar.gz |
Fix the indent level. I know we're in code freeze, and this is
one of the key components of the system, but I'm sure that this:
===
- ${ECHO_MSG} "===> Registering installation for ${PKGNAME}"; \
+ ${ECHO_MSG} "===> Registering installation for ${PKGNAME}"; \
===
change has absolutely no chance to screw us up, right? :)
Diffstat (limited to 'Mk')
-rw-r--r-- | Mk/bsd.port.mk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Mk/bsd.port.mk b/Mk/bsd.port.mk index 46a1276..e6ec45e 100644 --- a/Mk/bsd.port.mk +++ b/Mk/bsd.port.mk @@ -3,7 +3,7 @@ # bsd.port.mk - 940820 Jordan K. Hubbard. # This file is in the public domain. # -# $Id: bsd.port.mk,v 1.161 1995/05/13 05:37:45 asami Exp $ +# $Id: bsd.port.mk,v 1.162 1995/05/13 23:37:16 asami Exp $ # # Please view me with 4 column tabs! @@ -1115,7 +1115,7 @@ fake-pkg: @rm -rf ${PKG_DBDIR}/${PKGNAME} .endif @if [ ! -d ${PKG_DBDIR}/${PKGNAME} ]; then \ - ${ECHO_MSG} "===> Registering installation for ${PKGNAME}"; \ + ${ECHO_MSG} "===> Registering installation for ${PKGNAME}"; \ mkdir -p ${PKG_DBDIR}/${PKGNAME}; \ ${PKG_CMD} ${PKG_ARGS} -O ${PKGFILE} > ${PKG_DBDIR}/${PKGNAME}/+CONTENTS; \ cp ${PKGDIR}/DESCR ${PKG_DBDIR}/${PKGNAME}/+DESC; \ |