diff options
author | jkh <jkh@FreeBSD.org> | 1994-10-28 05:36:38 +0000 |
---|---|---|
committer | jkh <jkh@FreeBSD.org> | 1994-10-28 05:36:38 +0000 |
commit | 8ee64af9d6572aa0c2f2b399685ef0f0ec511a05 (patch) | |
tree | 92278283bdbdcffc54a2e2c1d1a2625110a8ba82 /gnu/lib | |
parent | adec7b0e902fa0de16edd9ce72a46de1f878668a (diff) | |
download | FreeBSD-src-8ee64af9d6572aa0c2f2b399685ef0f0ec511a05.zip FreeBSD-src-8ee64af9d6572aa0c2f2b399685ef0f0ec511a05.tar.gz |
Add a -I${.CURDIR} so that the next time Andrew changes dialog.h, the
whole build doesn't fall over before installation.
Diffstat (limited to 'gnu/lib')
-rw-r--r-- | gnu/lib/libdialog/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gnu/lib/libdialog/Makefile b/gnu/lib/libdialog/Makefile index b5f0b24..5562415 100644 --- a/gnu/lib/libdialog/Makefile +++ b/gnu/lib/libdialog/Makefile @@ -1,11 +1,11 @@ # Makefile for libdialog -# $Id: Makefile,v 1.4 1994/10/21 15:42:27 ache Exp $ +# $Id: Makefile,v 1.5 1994/10/28 03:08:14 ache Exp $ LIB= dialog SRCS= kernel.c rc.c checklist.c inputbox.c menubox.c msgbox.c \ lineedit.c radiolist.c textbox.c yesno.c prgbox.c raw_popen.c -CFLAGS+= -Wall -Wstrict-prototypes -DLOCALE +CFLAGS+= -I${.CURDIR} -Wall -Wstrict-prototypes -DLOCALE LDADD+= -lncurses -lmytinfo |