autogen.sh 393 B

12345678910111213141516171819
  1. #!/bin/sh
  2. autoreconf --force --install
  3. ret=$?
  4. if [ $ret -ne 0 ]; then
  5. echo "autoreconf: failed with return code: $ret"
  6. exit $ret
  7. fi
  8. echo "The logrotate build system is now prepared. To build here, run:"
  9. echo " ./configure && make"
  10. exit 0
  11. # Local Variables:
  12. # mode: sh
  13. # tab-width: 8
  14. # sh-basic-offset: 4
  15. # sh-indentation: 4
  16. # indent-tabs-mode: t
  17. # End:
  18. # ex: shiftwidth=4 tabstop=8