SHA256
1
0
forked from pool/gdal

Accepting request 821700 from home:StefanBruens:branches:science

- Work-around occasional build failures due to incomplete ordering
  in Makefile. (https://github.com/OSGeo/gdal/issues/2777)
- Avoid double gdal prefix for /usr/share/gdal/gdal/*

OBS-URL: https://build.opensuse.org/request/show/821700
OBS-URL: https://build.opensuse.org/package/show/Application:Geo/gdal?expand=0&rev=122
This commit is contained in:
Bruno Friedmann 2020-07-19 09:31:26 +00:00 committed by Git OBS Bridge
parent 375a6b80e5
commit 4e589ee6fb
2 changed files with 11 additions and 2 deletions

View File

@ -1,3 +1,10 @@
-------------------------------------------------------------------
Sun Jul 19 01:20:55 UTC 2020 - Stefan Brüns <stefan.bruens@rwth-aachen.de>
- Work-around occasional build failures due to incomplete ordering
in Makefile. (https://github.com/OSGeo/gdal/issues/2777)
- Avoid double gdal prefix for /usr/share/gdal/gdal/*
------------------------------------------------------------------- -------------------------------------------------------------------
Tue Jul 7 18:29:25 UTC 2020 - Bruno Friedmann <bruno@ioda-net.ch> Tue Jul 7 18:29:25 UTC 2020 - Bruno Friedmann <bruno@ioda-net.ch>

View File

@ -202,7 +202,7 @@ autoreconf -fi
%configure \ %configure \
--prefix=%{_prefix} \ --prefix=%{_prefix} \
--includedir=%{_includedir}/gdal \ --includedir=%{_includedir}/gdal \
--datadir=%{_datadir}/gdal \ --datadir=%{_datadir} \
--with-threads \ --with-threads \
--disable-static \ --disable-static \
--with-geotiff \ --with-geotiff \
@ -266,7 +266,9 @@ do
make %{?_smp_mflags} -C swig/${M} generate make %{?_smp_mflags} -C swig/${M} generate
done done
make %{?_smp_mflags} VERBOSE=1 all \ # Workaround incomplete ordering in Makefile
%make_build lib-dependencies
%make_build all
# Make Python 3 module # Make Python 3 module
pushd swig/python pushd swig/python