diff options
author | Eric Andersen <andersen@codepoet.org> | 2003-01-09 20:28:10 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2003-01-09 20:28:10 +0000 |
commit | 24613cbec1da01c699c0bb0b2ba543ffaf0e9b79 (patch) | |
tree | 0b777cabd9ac2e1aa1379e12ff21dcd145619bae /make/ncurses.mk | |
parent | aaba7b8d9e8dab1e1bef9c09b6d2aeaa3c4797eb (diff) | |
download | buildroot-novena-24613cbec1da01c699c0bb0b2ba543ffaf0e9b79.tar.gz buildroot-novena-24613cbec1da01c699c0bb0b2ba543ffaf0e9b79.zip |
Add missing unctrl.h header
Diffstat (limited to 'make/ncurses.mk')
-rw-r--r-- | make/ncurses.mk | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/make/ncurses.mk b/make/ncurses.mk index ea26a8bd5..855ee47b5 100644 --- a/make/ncurses.mk +++ b/make/ncurses.mk @@ -5,7 +5,7 @@ # ############################################################# # Copyright (C) 2002 by Ken Restivo <ken@246gt.com> -# $Id: ncurses.mk,v 1.13 2003/01/08 18:17:28 andersen Exp $ +# $Id: ncurses.mk,v 1.14 2003/01/09 20:28:10 andersen Exp $ # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU Library General Public License as @@ -103,6 +103,7 @@ $(TARGET_DIR)/lib/libncurses.so: $(STAGING_DIR)/lib/libncurses.so $(TARGET_DIR)/usr/include/ncurses.h: $(TARGET_DIR)/lib/libncurses.so cp -dpf $(NCURSES_DIR)/include/curses.h $(TARGET_DIR)/usr/include/ncurses.h cp -dpf $(NCURSES_DIR)/include/term.h $(TARGET_DIR)/usr/include/ + cp -dpf $(NCURSES_DIR)/include/unctrl.h $(TARGET_DIR)/usr/include/ cp -dpf $(NCURSES_DIR)/include/termcap.h $(TARGET_DIR)/usr/include/ cp -dpf $(NCURSES_DIR)/lib/libncurses.a $(TARGET_DIR)/usr/lib/ (cd $(TARGET_DIR)/usr/lib; ln -fs libncurses.a libcurses.a) |