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:
parent
7b598b41aa
commit
d012117221
@ -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>
|
||||
|
||||
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user