From 83109082569e6bacc649e4ee61bdb48b5df3f58e Mon Sep 17 00:00:00 2001 From: cgd Date: Mon, 7 Feb 1994 05:11:24 +0000 Subject: [PATCH] actually do the install when done --- libexec/makewhatis/makewhatis.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libexec/makewhatis/makewhatis.sh b/libexec/makewhatis/makewhatis.sh index 0ef8b05872e0..fc688af329c8 100644 --- a/libexec/makewhatis/makewhatis.sh +++ b/libexec/makewhatis/makewhatis.sh @@ -27,7 +27,7 @@ # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF # THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. # -# $Header: /cvsroot/src/libexec/makewhatis/Attic/makewhatis.sh,v 1.2 1994/01/29 01:49:52 jtc Exp $ +# $Header: /cvsroot/src/libexec/makewhatis/Attic/makewhatis.sh,v 1.3 1994/02/07 05:11:24 cgd Exp $ # trap "rm -f /tmp/whatis$$; exit 1" 1 2 15 @@ -43,5 +43,5 @@ do sed -n -f /usr/share/man/makewhatis.sed $file; done | sort -u > /tmp/whatis$$ -#install -o bin -g bin -m 444 /tmp/whatis$$ "$MANDIR/whatis.db" +install -o bin -g bin -m 444 /tmp/whatis$$ "$MANDIR/whatis.db" exit 0