Blame autogen.sh

2ff057
#!/bin/sh
2ff057
2ff057
export CPPFLAGS
2ff057
export CFLAGS
2ff057
export LDFLAGS
2ff057
2ff057
autoreconf -i
2ff057
2ff057
case "$1" in
2ff057
  "--noconfigure")
2ff057
    exit 0;
2ff057
    ;;
2ff057
  "--rpmconfigure")
2ff057
    shift
2ff057
    eval "`rpm --eval %configure`" "$@"
2ff057
    ;;
2ff057
  *)
2ff057
    ./configure "$@"
2ff057
    ;;
2ff057
esac