pidgin/purple-plugin-pack

Parents 62678430991f
Children ee710a16e631
Yeah... don't know what I was doing with the -V to python. I think I was thinking of the old autogen that did a foo --version >/dev/null 2>&1, and since python doesn't support --version...

At any rate, cleaned up the rest of this
  • +1 -3
    autogen.sh
  • --- a/autogen.sh Sat May 17 17:59:44 2008 -0400
    +++ b/autogen.sh Sun May 18 03:43:17 2008 -0400
    @@ -53,11 +53,9 @@
    ###############################################################################
    check () {
    CMD=$1
    - shift
    - ARGS=$@
    echo -n "checking for ${CMD}... "
    - BIN=`which ${CMD} $@ 2>/dev/null`
    + BIN=`which ${CMD} 2>/dev/null`
    if [ x"${BIN}" = x"" ] ; then
    echo "not found."