| OLD | NEW |
| 1 #! /bin/sh | 1 #! /bin/sh |
| 2 # Common wrapper for a few potentially missing GNU programs. | 2 # Common wrapper for a few potentially missing GNU programs. |
| 3 | 3 |
| 4 scriptversion=2013-10-28.13; # UTC | 4 scriptversion=2013-10-28.13; # UTC |
| 5 | 5 |
| 6 # Copyright (C) 1996-2014 Free Software Foundation, Inc. | 6 # Copyright (C) 1996-2013 Free Software Foundation, Inc. |
| 7 # Originally written by Fran,cois Pinard <pinard@iro.umontreal.ca>, 1996. | 7 # Originally written by Fran,cois Pinard <pinard@iro.umontreal.ca>, 1996. |
| 8 | 8 |
| 9 # This program is free software; you can redistribute it and/or modify | 9 # This program is free software; you can redistribute it and/or modify |
| 10 # it under the terms of the GNU General Public License as published by | 10 # it under the terms of the GNU General Public License as published by |
| 11 # the Free Software Foundation; either version 2, or (at your option) | 11 # the Free Software Foundation; either version 2, or (at your option) |
| 12 # any later version. | 12 # any later version. |
| 13 | 13 |
| 14 # This program is distributed in the hope that it will be useful, | 14 # This program is distributed in the hope that it will be useful, |
| 15 # but WITHOUT ANY WARRANTY; without even the implied warranty of | 15 # but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 16 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | 16 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| (...skipping 189 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 206 # not found, 63 for a program that failed due to version mismatch). | 206 # not found, 63 for a program that failed due to version mismatch). |
| 207 exit $st | 207 exit $st |
| 208 | 208 |
| 209 # Local variables: | 209 # Local variables: |
| 210 # eval: (add-hook 'write-file-hooks 'time-stamp) | 210 # eval: (add-hook 'write-file-hooks 'time-stamp) |
| 211 # time-stamp-start: "scriptversion=" | 211 # time-stamp-start: "scriptversion=" |
| 212 # time-stamp-format: "%:y-%02m-%02d.%02H" | 212 # time-stamp-format: "%:y-%02m-%02d.%02H" |
| 213 # time-stamp-time-zone: "UTC" | 213 # time-stamp-time-zone: "UTC" |
| 214 # time-stamp-end: "; # UTC" | 214 # time-stamp-end: "; # UTC" |
| 215 # End: | 215 # End: |
| OLD | NEW |