rebuild-configure-scripts.patch 365 B

12345678910111213
  1. --- /dev/null 2009-10-20 19:31:44.183325514 +0300
  2. +++ src/rebuild-configure-scripts.sh 2009-10-22 10:37:14.583117034 +0300
  3. @@ -0,0 +1,9 @@
  4. +#!/bin/bash
  5. +
  6. +top=`pwd`
  7. +for configurein in `find -name configure.in -type f` ; do
  8. + pushd `dirname $configurein`
  9. + grep -q A._CONFIG_HEADER configure.in && autoheader -I "$top"
  10. + autoconf -I "$top"
  11. + popd
  12. +done