X-Git-Url: https://git.m6w6.name/?p=m6w6%2Fext-http;a=blobdiff_plain;f=Makefile.frag;h=480198627ffed62911ab0155654d21e13e024552;hp=65547b8654b9ff6262437988d145a469bea53a23;hb=86508dbae5f9296485820e654f07af59be55003f;hpb=8d25696948ed61d50c417275222117f43069ddd1 diff --git a/Makefile.frag b/Makefile.frag index 65547b8..4801986 100644 --- a/Makefile.frag +++ b/Makefile.frag @@ -3,7 +3,7 @@ phpincludedir=$(prefix)/include/php install-http-headers: @echo "Installing HTTP headers: $(INSTALL_ROOT)$(phpincludedir)/ext/http/" @$(mkinstalldirs) $(INSTALL_ROOT)$(phpincludedir)/ext/http - @for f in $(HTTP_HEADER_FILES); do \ + @for f in $(PHP_HTTP_HEADERS); do \ if test -f "$(top_srcdir)/$$f"; then \ $(INSTALL_DATA) $(top_srcdir)/$$f $(INSTALL_ROOT)$(phpincludedir)/ext/http; \ elif test -f "$(top_builddir)/$$f"; then \ @@ -13,7 +13,7 @@ install-http-headers: elif test -f "$(top_builddir)/ext/http/$$f"; then \ $(INSTALL_DATA) $(top_builddir)/ext/http/$$f $(INSTALL_ROOT)$(phpincludedir)/ext/http; \ else \ - echo "WTF? $f $$f"; \ + echo "WTF? $$f"; \ fi \ done;