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 | 0bde18bfa25faff70543d9ab02b6392551458d52 (patch) | |
tree | 6d640baa9c5504eb34e70a6f5b367b062049a2e4 /share | |
parent | a42dff69c2d9260223aa34c0c5c23ab7128644a7 (diff) | |
download | FreeBSD-src-0bde18bfa25faff70543d9ab02b6392551458d52.zip FreeBSD-src-0bde18bfa25faff70543d9ab02b6392551458d52.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 'share')
-rw-r--r-- | share/mk/bsd.port.mk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/share/mk/bsd.port.mk b/share/mk/bsd.port.mk index 46a1276..e6ec45e 100644 --- a/share/mk/bsd.port.mk +++ b/share/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; \ |