diff options
author | Ilia Alshanetsky <iliaa@php.net> | 2004-05-19 14:27:32 +0000 |
---|---|---|
committer | Ilia Alshanetsky <iliaa@php.net> | 2004-05-19 14:27:32 +0000 |
commit | c11d6ca38bb99fed362c96364f09abf789e30be9 (patch) | |
tree | 10fafd0827f8fa71f2f0037000f8b335bbb018eb /ext/pdo/Makefile.frag | |
parent | bbcf09a833a8bf43e709293a3c0cd85dbd454f18 (diff) | |
download | php-git-c11d6ca38bb99fed362c96364f09abf789e30be9.tar.gz |
Copy the headers
Diffstat (limited to 'ext/pdo/Makefile.frag')
-rw-r--r-- | ext/pdo/Makefile.frag | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/ext/pdo/Makefile.frag b/ext/pdo/Makefile.frag index 1b34423608..46bba338ef 100644 --- a/ext/pdo/Makefile.frag +++ b/ext/pdo/Makefile.frag @@ -8,10 +8,10 @@ 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)/$$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; \ + if 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; \ else \ echo "hmmm"; \ fi \ |