From 4d9d4f3152a7f6d6937542899ed6ec726bca5802 Mon Sep 17 00:00:00 2001 From: Hugo Villeneuve Date: Thu, 8 Aug 2013 12:00:08 -0400 Subject: [PATCH] Fix php5 invalid man pages installation path phpize.1, php.1 and php-config.1 are incorrectly installed under /usr/php/man --- stage5/pkg/php | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/stage5/pkg/php b/stage5/pkg/php index 60ed440..0c0fed3 100644 --- a/stage5/pkg/php +++ b/stage5/pkg/php @@ -7,11 +7,15 @@ hvconfig_pre() # your system). # Build directory doesn't work: - # gcc: Zend/zend_language_scanner.c: No such file or directory + # gcc: Zend/zend_language_scanner.c: No such file or directory + # --mandir: + # If not specified, php installs some man pages under /usr/php + # (phpize.1, php.1 and php-config.1) CONFIGURE_OPTS=" \ ${CONFIGURE_OPTS} \ --with-apxs2 \ --with-config-file-path=/etc \ + --mandir=/usr/share/man \ --with-zlib \ --enable-bcmath \ --with-bz2 \ -- 2.20.1