diff options
author | peter <peter@FreeBSD.org> | 1999-09-01 05:14:57 +0000 |
---|---|---|
committer | peter <peter@FreeBSD.org> | 1999-09-01 05:14:57 +0000 |
commit | 61eef2dc3522cc8ff3ca644bd33707979489c38d (patch) | |
tree | 100015e64dac4c93ab388fef2d344320c18de259 /lib | |
parent | 2fdb12ea191206861f3cd9bf3a0d8ba85dd96aae (diff) | |
download | FreeBSD-src-61eef2dc3522cc8ff3ca644bd33707979489c38d.zip FreeBSD-src-61eef2dc3522cc8ff3ca644bd33707979489c38d.tar.gz |
Add a missing dependency for make_hash which could make various forms of
make -jN fail. This fixes the present problem only, not the larger one
of when those internal tools are built and the cross-compiling etc.
Submitted by: luoqi
Diffstat (limited to 'lib')
-rw-r--r-- | lib/libncurses/Makefile | 2 | ||||
-rw-r--r-- | lib/ncurses/ncurses/Makefile | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/lib/libncurses/Makefile b/lib/libncurses/Makefile index e2de7fb..3c2fd61 100644 --- a/lib/libncurses/Makefile +++ b/lib/libncurses/Makefile @@ -305,7 +305,7 @@ term.h: MKterm.h.awk edit_cfg.sh Caps make_keys: make_keys.c names.c ${CC} -o $@ ${CFLAGS} ${NCURSES}/ncurses/tinfo/make_keys.c -make_hash: comp_hash.c +make_hash: comp_hash.c hashsize.h ${CC} -o $@ ${CFLAGS} -DMAIN_PROGRAM \ ${NCURSES}/ncurses/tinfo/comp_hash.c diff --git a/lib/ncurses/ncurses/Makefile b/lib/ncurses/ncurses/Makefile index e2de7fb..3c2fd61 100644 --- a/lib/ncurses/ncurses/Makefile +++ b/lib/ncurses/ncurses/Makefile @@ -305,7 +305,7 @@ term.h: MKterm.h.awk edit_cfg.sh Caps make_keys: make_keys.c names.c ${CC} -o $@ ${CFLAGS} ${NCURSES}/ncurses/tinfo/make_keys.c -make_hash: comp_hash.c +make_hash: comp_hash.c hashsize.h ${CC} -o $@ ${CFLAGS} -DMAIN_PROGRAM \ ${NCURSES}/ncurses/tinfo/comp_hash.c |