pidgin/purple-plugin-pack

d9e5e550d132
Parents 22709b87e816
Children d6db6b958a3b
Backport part of Pidgin revision 35800b680594b4a9a13085c006dbde401d9ab541
(including the fix in 1acb1cc0f7e5947393c4af3ef1a2cc7266aa1317):
"I also made it so any custom AUTO*_FLAGS specified will override the default
arguments instead of just appending to them." --nosnilmot
  • +4 -4
    autogen.sh
  • --- a/autogen.sh Tue Nov 25 16:44:34 2008 -0500
    +++ b/autogen.sh Tue Nov 25 16:59:10 2008 -0500
    @@ -137,11 +137,11 @@
    ###############################################################################
    # Run all of our helpers
    ###############################################################################
    -run_or_die ${LIBTOOLIZE} -c -f --automake ${LIBTOOLIZE_FLAGS}
    -run_or_die ${INTLTOOLIZE} -c -f --automake ${INTLTOOLIZE_FLAGS}
    -run_or_die ${ACLOCAL} ${ACLOCAL_FLAGS}
    +run_or_die ${LIBTOOLIZE} ${LIBTOOLIZE_FLAGS:-"-c -f --automake"}
    +run_or_die ${INTLTOOLIZE} ${INTLTOOLIZE_FLAGS:-"-c -f --automake"}
    +run_or_die ${ACLOCAL} ${ACLOCAL_FLAGS:-"-I m4macros"}
    run_or_die ${AUTOHEADER} ${AUTOHEADER_FLAGS}
    -run_or_die ${AUTOMAKE} -a -c --gnu ${AUTOMAKE_FLAGS}
    +run_or_die ${AUTOMAKE} ${AUTOMAKE_FLAGS:-"-a -c --gnu"}
    run_or_die ${AUTOCONF} ${AUTOCONF_FLAGS}
    ###############################################################################