Accepting request 511730 from home:bmwiedemann:branches:network

Sort SHARED_MODS list to fix build compare (boo#1041090)

OBS-URL: https://build.opensuse.org/request/show/511730
OBS-URL: https://build.opensuse.org/package/show/network/proftpd?expand=0&rev=54
This commit is contained in:
Dirk Mueller 2017-07-21 07:39:27 +00:00 committed by Git OBS Bridge
parent ab9a8d7e17
commit 9893a8e6e1
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
-------------------------------------------------------------------
Fri Jul 21 04:43:44 UTC 2017 - bwiedemann@suse.com
- Sort SHARED_MODS list to fix build compare (boo#1041090)
-------------------------------------------------------------------
Fri Jun 16 08:28:42 UTC 2017 - nmoudra@suse.com

View File

@ -159,7 +159,7 @@ rm README.AIX
%build
rm contrib/mod_wrap.c
PROFTPD_SHARED_MODS="$(for spec_mod in $(find contrib -name mod_\*.c); do echo "$(basename ${spec_mod%%.c})"; done | tr '\n' ':' | sed -e 's|:$||')"
PROFTPD_SHARED_MODS="$(for spec_mod in $(find contrib -name mod_\*.c|sort); do echo "$(basename ${spec_mod%%.c})"; done | tr '\n' ':' | sed -e 's|:$||')"
export CFLAGS="%{optflags} -D_GNU_SOURCE -DLDAP_DEPRECATED"
export CXXFLAGS="$CFLAGS"
%configure --disable-static \