]> granicus.if.org Git - php/commitdiff
Let it install correctly when built via phpize
authorWez Furlong <wez@php.net>
Wed, 19 May 2004 15:27:27 +0000 (15:27 +0000)
committerWez Furlong <wez@php.net>
Wed, 19 May 2004 15:27:27 +0000 (15:27 +0000)
ext/pdo/Makefile.frag

index 46bba338eff61a4b74b0988f03ce0afd0220728a..c28a5cee50d93014695778a93926f1d8b30ef555 100644 (file)
@@ -8,7 +8,11 @@ install-pdo-headers:
        echo "Installing PDO headers:          $(INSTALL_ROOT)$(phpincludedir)/ext/pdo/"
        $(mkinstalldirs) $(INSTALL_ROOT)$(phpincludedir)/ext/pdo
        for f in $(PDO_HEADER_FILES); do \
-               if test -f "$(top_srcdir)/ext/pdo/$$f"; then \
+               if test -f "$(top_srcdir)/$$f"; then \
+                       $(INSTALL_DATA) $(top_srcdir)/$$f $(INSTALL_ROOT)$(phpincludedir)/ext/pdo; \
+               elif test -f "$(top_builddir)/$$f"; then \
+                       $(INSTALL_DATA) $(top_builddir)/$$f $(INSTALL_ROOT)$(phpincludedir)/ext/pdo; \
+               elif test -f "$(top_srcdir)/ext/pdo/$$f"; then \
                        $(INSTALL_DATA) $(top_srcdir)/ext/pdo/$$f $(INSTALL_ROOT)$(phpincludedir)/ext/pdo; \
                elif test -f "$(top_builddir)/ext/pdo/$$f"; then \
                        $(INSTALL_DATA) $(top_builddir)/ext/pdo/$$f $(INSTALL_ROOT)$(phpincludedir)/ext/pdo; \