wrong-variable-expansion.patch 677 B

1234567891011121314151617181920212223
  1. Index: git/configure.ac
  2. ===================================================================
  3. --- git.orig/configure.ac
  4. +++ git/configure.ac
  5. @@ -42,18 +42,6 @@ case $host in
  6. ;;
  7. esac
  8. -
  9. -# Bring additional directories where things might be found into our
  10. -# search path. I don't know why autoconf doesn't do this by default
  11. -if test x"${mingw}" == "xno" ; then
  12. - for spfx in /usr/local /opt/local /sw ; do
  13. - echo checking ${spfx}/include
  14. - if test -d ${spfx}/include; then
  15. - CPPFLAGS="-I${spfx}/include $CPPFLAGS"
  16. - LDFLAGS="-L${spfx}/lib $LDFLAGS"
  17. - fi
  18. - done
  19. -fi
  20. #
  21. #
  22. ################################################################