mirror of the now-defunct rocklinux.org
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.

56 lines
2.5 KiB

  1. diff -dur Squeak-3.6-3/platforms/unix/config/inisqueak.in Squeak-3.6-3-patch/platforms/unix/config/inisqueak.in
  2. --- Squeak-3.6-3/platforms/unix/config/inisqueak.in 2003-08-31 07:31:35.000000000 +0200
  3. +++ Squeak-3.6-3-patch/platforms/unix/config/inisqueak.in 2004-09-26 13:12:57.028629888 +0200
  4. @@ -191,7 +191,7 @@
  5. echo
  6. fi
  7. done
  8. - IMAGE=`echo ${images} | tr ' ' '\012' | tail +${reply} | head -1`
  9. + IMAGE=`echo ${images} | tr ' ' '\012' | tail -n+${reply} | head -n1`
  10. CHANGES=${IMAGE}.changes.gz
  11. IMAGE=${IMAGE}.image.gz
  12. fi
  13. diff -dur Squeak-3.6-3/platforms/unix/config/mkconfig.in Squeak-3.6-3-patch/platforms/unix/config/mkconfig.in
  14. --- Squeak-3.6-3/platforms/unix/config/mkconfig.in 2003-02-10 04:28:32.000000000 +0100
  15. +++ Squeak-3.6-3-patch/platforms/unix/config/mkconfig.in 2004-09-26 13:13:30.157593520 +0200
  16. @@ -2,8 +2,8 @@
  17. int_modules="@int_modules@"
  18. ext_modules="@ext_modules@"
  19. -int_plugins="@int_plugins@ `tail -1 @vmmdir@/plugins.int | sed 's,.* =,,'`"
  20. -ext_plugins="@ext_plugins@ `tail -1 @vmmdir@/plugins.ext | sed 's,.* =,,'`"
  21. +int_plugins="@int_plugins@ `tail -n1 @vmmdir@/plugins.int | sed 's,.* =,,'`"
  22. +ext_plugins="@ext_plugins@ `tail -n1 @vmmdir@/plugins.ext | sed 's,.* =,,'`"
  23. if test -f plugins.exc; then
  24. nlsp='tr \012\015 \040\040'
  25. --- ./platforms/unix/config/verstamp 2002-10-27 02:29:04.000000000 +0200
  26. +++ ./platforms/unix/config/verstamp-p 2004-11-03 02:52:26.487000096 +0100
  27. @@ -5,14 +5,14 @@
  28. # Last edited: 2002-06-08 18:32:53 by piumarta on emilia.inria.fr
  29. if test -f $1; then
  30. - SERIAL=`head -1 $1 | cut -d ' ' -f 3 | sed 's/;//'`
  31. + SERIAL=`head -n1 $1 | cut -d ' ' -f 3 | sed 's/;//'`
  32. SERIAL=`expr $SERIAL + 1`
  33. else
  34. SERIAL=1
  35. fi
  36. if expr "$2" : ".*gcc" >/dev/null ; then
  37. - CC=`$2 -v 2>&1 | tail -1 | sed 's/.*based on//g' | awk '{print $1 , $3} '`
  38. + CC=`$2 -v 2>&1 | tail -n1 | sed 's/.*based on//g' | awk '{print $1 , $3} '`
  39. else
  40. CC=$2
  41. fi
  42. --- ./platforms/unix/config/ltcf-c.sh 2002-11-27 15:21:02.000000000 +0100
  43. +++ ./platforms/unix/config/ltcf-c.sh-p 2004-11-03 02:54:22.545356544 +0100
  44. @@ -151,7 +151,7 @@
  45. # If the export-symbols file already is a .def file (1st line
  46. # is EXPORTS), use it as is.
  47. # If DATA tags from a recent dlltool are present, honour them!
  48. - archive_expsym_cmds='if test "x`head -1 $export_symbols`" = xEXPORTS; then
  49. + archive_expsym_cmds='if test "x`head -n1 $export_symbols`" = xEXPORTS; then
  50. cp $export_symbols $output_objdir/$soname-def;
  51. else
  52. echo EXPORTS > $output_objdir/$soname-def;