OpenSDE Packages Database (without history before r20070)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

40 lines
1.8 KiB

  1. # --- SDE-COPYRIGHT-NOTE-BEGIN ---
  2. # This copyright note is auto-generated by ./scripts/Create-CopyPatch.
  3. #
  4. # Filename: package/.../mod_python/bash-31.patch
  5. # Copyright (C) 2006 The T2 SDE Project
  6. #
  7. # More information can be found in the files COPYING and README.
  8. #
  9. # This patch file is dual-licensed. It is available under the license the
  10. # patched project is licensed under, as long as it is an OpenSource license
  11. # as defined at http://www.opensource.org/ (e.g. BSD, X11) or under the terms
  12. # of the GNU General Public License as published by the Free Software
  13. # Foundation; either version 2 of the License, or (at your option) any later
  14. # version.
  15. # --- SDE-COPYRIGHT-NOTE-END ---
  16. diff -Nur mod_python-3.1.4-orig/configure mod_python-3.1.4/configure
  17. --- mod_python-3.1.4-orig/configure 2005-01-29 21:25:27.000000000 +0000
  18. +++ mod_python-3.1.4/configure 2006-01-24 21:11:44.387829000 +0000
  19. @@ -2772,7 +2772,7 @@
  20. # get the mod_python version
  21. MP_VERSION=`awk '/MPV_STRING/ {print $3}' src/include/mpversion.h`
  22. -MP_VERSION=`echo $MP_VERSION | sed s/\\"//g`
  23. +MP_VERSION=`echo $MP_VERSION | sed s/\"//g`
  24. ac_config_files="$ac_config_files Makefile src/Makefile Doc/Makefile test/testconf.py dist/setup.py dist/Makefile"
  25. cat >confcache <<\_ACEOF
  26. diff -Nur mod_python-3.1.4-orig/configure.in mod_python-3.1.4/configure.in
  27. --- mod_python-3.1.4-orig/configure.in 2005-01-29 21:25:27.000000000 +0000
  28. +++ mod_python-3.1.4/configure.in 2006-01-24 21:11:59.936800750 +0000
  29. @@ -275,7 +275,7 @@
  30. # get the mod_python version
  31. AC_SUBST(MP_VERSION)
  32. MP_VERSION=`awk '/MPV_STRING/ {print $3}' src/include/mpversion.h`
  33. -MP_VERSION=`echo $MP_VERSION | sed s/\\"//g`
  34. +MP_VERSION=`echo $MP_VERSION | sed s/\"//g`
  35. AC_OUTPUT(Makefile src/Makefile Doc/Makefile test/testconf.py dist/setup.py dist/Makefile)