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.

59 lines
2.0 KiB

  1. --- ./camlp4/tools/conv.sh 2002-07-23 16:11:49.000000000 +0200
  2. +++ /tmp/tmp.vfnXD18380 2004-05-20 14:24:03.000000000 +0200
  3. @@ -11,7 +11,7 @@
  4. shift
  5. done
  6. -set - `head -1 $FILE`
  7. +set - `head -n 1 $FILE`
  8. if test "$2" = "camlp4r" -o "$2" = "camlp4"; then
  9. COMM="$OTOP/boot/ocamlrun $DIR/../boot/$2 -nolib -I $DIR/../boot $INCL $DIR/../etc/pr_o.cmo"
  10. shift; shift
  11. --- ./camlp4/tools/camlp4_comm.sh 2003-07-10 14:28:35.000000000 +0200
  12. +++ /tmp/tmp.vfnXD18380 2004-05-20 14:24:03.000000000 +0200
  13. @@ -13,9 +13,9 @@
  14. shift
  15. done
  16. -head -1 $FILE >/dev/null || exit 1
  17. +head -n 1 $FILE >/dev/null || exit 1
  18. -set - `head -1 $FILE`
  19. +set - `head -n 1 $FILE`
  20. if test "$2" = "camlp4r" -o "$2" = "camlp4"; then
  21. COMM="ocamlrun$EXE ../boot/$2$EXE -nolib -I ../boot"
  22. if test "`basename $OTOP`" != "ocaml_stuff"; then
  23. --- ./camlp4/tools/apply.sh 2002-07-23 16:11:49.000000000 +0200
  24. +++ /tmp/tmp.vfnXD18380 2004-05-20 14:24:03.000000000 +0200
  25. @@ -11,9 +11,9 @@
  26. shift
  27. done
  28. -head -1 $FILE >/dev/null || exit 1
  29. +head -n 1 $FILE >/dev/null || exit 1
  30. -set - `head -1 $FILE`
  31. +set - `head -n 1 $FILE`
  32. if test "$2" = "camlp4r" -o "$2" = "camlp4"; then
  33. COMM="../boot/$2 -nolib -I ../boot -I ../etc"
  34. shift; shift
  35. --- ./config/gnu/config.guess 2001-06-25 16:37:26.000000000 +0200
  36. +++ /tmp/tmp.vfnXD18380 2004-05-20 14:24:03.000000000 +0200
  37. @@ -314,7 +314,7 @@
  38. echo m68k-sun-sunos${UNAME_RELEASE}
  39. exit 0 ;;
  40. sun*:*:4.2BSD:*)
  41. - UNAME_RELEASE=`(head -1 /etc/motd | awk '{print substr($5,1,3)}') 2>/dev/null`
  42. + UNAME_RELEASE=`(head -n 1 /etc/motd | awk '{print substr($5,1,3)}') 2>/dev/null`
  43. test "x${UNAME_RELEASE}" = "x" && UNAME_RELEASE=3
  44. case "`/bin/arch`" in
  45. sun3)
  46. @@ -496,7 +496,7 @@
  47. fi
  48. exit 0 ;;
  49. *:AIX:*:[45])
  50. - IBM_CPU_ID=`/usr/sbin/lsdev -C -c processor -S available | head -1 | awk '{ print $1 }'`
  51. + IBM_CPU_ID=`/usr/sbin/lsdev -C -c processor -S available | head -n 1 | awk '{ print $1 }'`
  52. if /usr/sbin/lsattr -El ${IBM_CPU_ID} | grep ' POWER' >/dev/null 2>&1; then
  53. IBM_ARCH=rs6000
  54. else