diff options
author | Bruce Evans <bde@FreeBSD.org> | 1998-04-19 13:25:54 +0000 |
---|---|---|
committer | Bruce Evans <bde@FreeBSD.org> | 1998-04-19 13:25:54 +0000 |
commit | 3b5ad50e7d3a6af71186292912c0bb8564602ce8 (patch) | |
tree | 2d6bf6ab7968c9c017e8cd4cd52c5ddfd31cd7ed | |
parent | e6bb224e431eef3d33812f0c9479782051455ff1 (diff) | |
download | src-3b5ad50e7d3a6af71186292912c0bb8564602ce8.tar.gz src-3b5ad50e7d3a6af71186292912c0bb8564602ce8.zip |
Never generate neqn at install time (the previous fix for this was
incomplete).
Notes
Notes:
svn path=/head/; revision=35292
-rw-r--r-- | gnu/usr.bin/groff/eqn/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gnu/usr.bin/groff/eqn/Makefile b/gnu/usr.bin/groff/eqn/Makefile index 5ea45a1ac306..5ff6a75850ab 100644 --- a/gnu/usr.bin/groff/eqn/Makefile +++ b/gnu/usr.bin/groff/eqn/Makefile @@ -1,4 +1,4 @@ -# $Id$ +# $Id: Makefile,v 1.10 1998/03/20 12:03:53 bde Exp $ PROG= eqn SRCS= eqn.cc eqn.tab.h main.cc lex.cc \ @@ -12,7 +12,7 @@ CLEANFILES= eqn.cc eqn.tab.h ${MAN1} neqn y.tab.c y.tab.h all: neqn -beforeinstall: neqn +beforeinstall: ${INSTALL} ${COPY} -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} neqn \ ${DESTDIR}${BINDIR} |