| OLD | NEW |
| 1 #!/bin/sh | 1 #!/bin/sh |
| 2 # install - install a program, script, or datafile | 2 # install - install a program, script, or datafile |
| 3 | 3 |
| 4 scriptversion=2011-04-20.01; # UTC | 4 scriptversion=2011-04-20.01; # UTC |
| 5 | 5 |
| 6 # This originates from X11R5 (mit/util/scripts/install.sh), which was | 6 # This originates from X11R5 (mit/util/scripts/install.sh), which was |
| 7 # later released in X11R6 (xc/config/util/install.sh) with the | 7 # later released in X11R6 (xc/config/util/install.sh) with the |
| 8 # following copyright and license. | 8 # following copyright and license. |
| 9 # | 9 # |
| 10 # Copyright (C) 1994 X Consortium | 10 # Copyright (C) 1994 X Consortium |
| (...skipping 508 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 519 fi | 519 fi |
| 520 done | 520 done |
| 521 | 521 |
| 522 # Local variables: | 522 # Local variables: |
| 523 # eval: (add-hook 'write-file-hooks 'time-stamp) | 523 # eval: (add-hook 'write-file-hooks 'time-stamp) |
| 524 # time-stamp-start: "scriptversion=" | 524 # time-stamp-start: "scriptversion=" |
| 525 # time-stamp-format: "%:y-%02m-%02d.%02H" | 525 # time-stamp-format: "%:y-%02m-%02d.%02H" |
| 526 # time-stamp-time-zone: "UTC" | 526 # time-stamp-time-zone: "UTC" |
| 527 # time-stamp-end: "; # UTC" | 527 # time-stamp-end: "; # UTC" |
| 528 # End: | 528 # End: |
| OLD | NEW |