author | kergoth <kergoth> | 2003-06-20 20:59:30 (UTC) |
---|---|---|
committer | kergoth <kergoth> | 2003-06-20 20:59:30 (UTC) |
commit | fde32755685bec14851f943be337e94675caf0c4 (patch) (side-by-side diff) | |
tree | d5a87565767420f0b9da18fd2ee80407b6ec1b7e | |
parent | ec80e207cce9ebb55be771603fc47a4e7892fd6c (diff) | |
download | opie-fde32755685bec14851f943be337e94675caf0c4.zip opie-fde32755685bec14851f943be337e94675caf0c4.tar.gz opie-fde32755685bec14851f943be337e94675caf0c4.tar.bz2 |
Dump warning message when unable to locate the ncurses/curses header.
-rw-r--r-- | scripts/lxdialog/Makefile | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/scripts/lxdialog/Makefile b/scripts/lxdialog/Makefile index b34bbc3..6d05cfd 100644 --- a/scripts/lxdialog/Makefile +++ b/scripts/lxdialog/Makefile @@ -15,8 +15,14 @@ else endif endif endif +ifeq ($(filter clean mrproper distclean,$(MAKECMDGOALS)),) +ifeq ($(filter -DCURSES_LOC%,$(HOST_EXTRACFLAGS)),) +$(error Unable to locate ncurses.h or curses.h) +endif +endif + host-progs := lxdialog always := $(host-progs) lxdialog-objs := checklist.o menubox.o textbox.o yesno.o inputbox.o \ |