From 9be5ba91b8f9d0f3f10b8f9d622f16bf2338f4bc Mon Sep 17 00:00:00 2001 From: Theodore Ts'o Date: Fri, 6 May 2005 00:38:26 -0400 Subject: [PATCH] Fix build of tst_ostype when doing a "make check" in lib/e2p; it was missing CFLAGS in the compile rule. (Addresses Sourceforge Bug: #1180572) --- lib/e2p/ChangeLog | 6 ++++++ lib/e2p/Makefile.in | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/lib/e2p/ChangeLog b/lib/e2p/ChangeLog index 5f040ed..8fd227b 100644 --- a/lib/e2p/ChangeLog +++ b/lib/e2p/ChangeLog @@ -1,3 +1,9 @@ +2005-05-06 Theodore Ts'o + + * Makefile.in (tst_ostype): Add $(ALL_CFLAGS) to the tst_ostype + rule so it can find the header files. (Addresses + Sourceforge Bug: #1180572) + 2005-04-09 Theodore Ts'o * ls.c: Add stdlib.h header file since list_super2() uses the diff --git a/lib/e2p/Makefile.in b/lib/e2p/Makefile.in index f77e769..4e56096 100644 --- a/lib/e2p/Makefile.in +++ b/lib/e2p/Makefile.in @@ -66,7 +66,7 @@ e2p.pc: $(srcdir)/e2p.pc.in $(top_builddir)/config.status tst_ostype: $(srcdir)/ostype.c @echo " LD $@" - @$(CC) -DTEST_PROGRAM -o tst_ostype $(srcdir)/ostype.c + @$(CC) -DTEST_PROGRAM -o tst_ostype $(srcdir)/ostype.c $(ALL_CFLAGS) check:: tst_ostype ./tst_ostype -- 1.8.3.1