From: Andy Thompson Date: Sat, 5 Jul 2014 12:05:05 +0000 (+0100) Subject: Fix phpdbg.1 man page installation when build != src directory X-Git-Tag: php-5.6.0RC3~1^2~73^2^2 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=07d227229771015600789ae36e3b12ce29b1f339;p=php Fix phpdbg.1 man page installation when build != src directory --- diff --git a/Makefile.frag b/Makefile.frag index b276aaaa53..36c7512d69 100644 --- a/Makefile.frag +++ b/Makefile.frag @@ -28,7 +28,7 @@ install-phpdbg: $(BUILD_BINARY) @$(INSTALL) -m 0755 $(BUILD_BINARY) $(INSTALL_ROOT)$(bindir)/$(program_prefix)phpdbg$(program_suffix)$(EXEEXT) @echo "Installing phpdbg man page: $(INSTALL_ROOT)$(mandir)/man1/" @$(mkinstalldirs) $(INSTALL_ROOT)$(mandir)/man1 - @$(INSTALL_DATA) sapi/phpdbg/phpdbg.1 $(INSTALL_ROOT)$(mandir)/man1/$(program_prefix)phpdbg$(program_suffix).1 + @$(INSTALL_DATA) $(srcdir)/phpdbg.1 $(INSTALL_ROOT)$(mandir)/man1/$(program_prefix)phpdbg$(program_suffix).1 clean-phpdbg: @echo "Cleaning phpdbg object files ..."