# HG changeset patch # User Yoshiki Yazawa # Date 1190862045 -32400 # Node ID a21e391a5490fa309d8a96be2d646da56a18eae5 # Parent fa2a37d3f7a22547563342e2e4a93d20354c2aae target depend should use ${CFLAGS} otherwise it will miss installed headers. diff -r fa2a37d3f7a2 -r a21e391a5490 buildsys.mk.in --- a/buildsys.mk.in Thu Sep 27 09:44:16 2007 +0900 +++ b/buildsys.mk.in Thu Sep 27 12:00:45 2007 +0900 @@ -101,7 +101,7 @@ ;; \ esac; \ done; \ - if ${CPP} ${CPPFLAGS} -M $$list >.deps; then \ + if ${CPP} ${CPPFLAGS} ${CFLAGS} -M $$list >.deps; then \ ${DEPEND_OK}; \ else \ ${DEPEND_FAILED}; \