diff options
author | Dale Rahn <drahn@cvs.openbsd.org> | 2008-09-02 00:01:35 +0000 |
---|---|---|
committer | Dale Rahn <drahn@cvs.openbsd.org> | 2008-09-02 00:01:35 +0000 |
commit | 90a0f4c637ddce658bb62aedc44ae30b1ba0a18f (patch) | |
tree | 1b52f713bb344819e5c2f276370e44dcd110b574 /share/termtypes/Makefile | |
parent | 4f7357f6ef09f021a47dea632eee625f94e09144 (diff) |
Use the installed version of tic instead of the newly built version,
The build/upgrade process requires that changes requiring this type of
update be recorded in faq/current.html. ok deraadt@
Diffstat (limited to 'share/termtypes/Makefile')
-rw-r--r-- | share/termtypes/Makefile | 12 |
1 files changed, 2 insertions, 10 deletions
diff --git a/share/termtypes/Makefile b/share/termtypes/Makefile index f2b3e97a511..9d081147126 100644 --- a/share/termtypes/Makefile +++ b/share/termtypes/Makefile @@ -1,10 +1,11 @@ -# $OpenBSD: Makefile,v 1.15 2000/02/17 19:58:34 millert Exp $ +# $OpenBSD: Makefile,v 1.16 2008/09/02 00:01:34 drahn Exp $ # # Take termcap/terminfo master file and generate termcap/terminfo .db files # master: http://www.tuxedo.org/~esr/terminfo/termtypes.master.gz MAN= termcap.5 CLEANFILES+= terminfo.src termcap.src terminfo.db termcap.db +TIC= /usr/bin/tic all: terminfo.db termcap.db @@ -58,12 +59,3 @@ realinstall: ln -fs ${BINDIR}/misc/termcap ${DESTDIR}/etc/termcap .include <bsd.prog.mk> - -# Use the tic we just built if possible -.if exists(${.CURDIR}/../../usr.bin/tic/${__objdir}/tic) -TIC= ${.CURDIR}/../../usr.bin/tic/${__objdir}/tic -.elif exists(../../usr.bin/tic/tic) -TIC= ../../usr.bin/tic/tic -.else -TIC= /usr/bin/tic -.endif |