diff options
author | kan <kan@FreeBSD.org> | 2004-07-30 00:08:15 +0000 |
---|---|---|
committer | kan <kan@FreeBSD.org> | 2004-07-30 00:08:15 +0000 |
commit | cebcc4fe0c575575c69fc7bcbb56c96ae39a6fb3 (patch) | |
tree | df8f6671156611e546277df149cc14910be70c20 /usr.bin/lex | |
parent | c47f6414a1703b33b1b824b13072fcae1a602b3e (diff) | |
download | FreeBSD-src-cebcc4fe0c575575c69fc7bcbb56c96ae39a6fb3.zip FreeBSD-src-cebcc4fe0c575575c69fc7bcbb56c96ae39a6fb3.tar.gz |
Stop the practice of installing external headers into GCC-specific directory.
Install FlexLexer.h into /usr/include directly.
Diffstat (limited to 'usr.bin/lex')
-rw-r--r-- | usr.bin/lex/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.bin/lex/Makefile b/usr.bin/lex/Makefile index 5b7b6b2..6d0ea5b 100644 --- a/usr.bin/lex/Makefile +++ b/usr.bin/lex/Makefile @@ -19,7 +19,7 @@ SRCS= scan.c ccl.c dfa.c ecs.c gen.c main.c misc.c nfa.c parse.y \ LFLAGS+= -is CFLAGS+= -I. -I${.CURDIR} INCS= FlexLexer.h -INCSDIR= ${INCLUDEDIR}/c++/3.3 +INCSDIR= ${INCLUDEDIR} MLINKS+= lex.1 flex.1 MLINKS+= lex.1 flex++.1 MLINKS+= lex.1 lex++.1 |