From 9893a8e6e1578c17b351e1cd660b45316e0820edb278e10af7ffb4423327e2b3 Mon Sep 17 00:00:00 2001 From: Dirk Mueller Date: Fri, 21 Jul 2017 07:39:27 +0000 Subject: [PATCH] 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 --- proftpd.changes | 5 +++++ proftpd.spec | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/proftpd.changes b/proftpd.changes index 7a9069e..9c2798c 100644 --- a/proftpd.changes +++ b/proftpd.changes @@ -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 diff --git a/proftpd.spec b/proftpd.spec index 2f64521..5ed980a 100644 --- a/proftpd.spec +++ b/proftpd.spec @@ -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 \