SHA256
1
0
forked from pool/apache2

- allow PS decoder for build [bsc#1109976]

- build with -j1, otherwise build fails

OBS-URL: https://build.opensuse.org/package/show/Apache/apache2?expand=0&rev=570
This commit is contained in:
Petr Gajdos 2018-10-01 14:00:18 +00:00 committed by Git OBS Bridge
parent 7b598b41aa
commit d012117221
2 changed files with 7 additions and 1 deletions

View File

@ -1,3 +1,9 @@
-------------------------------------------------------------------
Mon Oct 1 13:38:05 UTC 2018 - Petr Gajdos <pgajdos@suse.com>
- consider also patterns in APACHE_CONF_INCLUDE_DIRS as documentation
says (patch Juergen Gleiss)
-------------------------------------------------------------------
Thu Sep 27 10:25:40 UTC 2018 - Petr Gajdos <pgajdos@suse.com>

View File

@ -104,7 +104,7 @@ done
# APACHE_CONF_INCLUDE_DIRS -> include.conf
for dir in $APACHE_CONF_INCLUDE_DIRS; do
test ${dir:0:1} = / || dir=/etc/apache2/$dir
if [ ! -e $dir ]; then
if ! ( [ -e $dir ] || [ -e ${dir%/*} ] ); then
continue
fi
echo "Include $dir" >> ${sysconfd_dir}/include.conf