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=2006-12-25.00 | 4 scriptversion=2009-04-28.21; # 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 |
11 # | 11 # |
12 # Permission is hereby granted, free of charge, to any person obtaining a copy | 12 # Permission is hereby granted, free of charge, to any person obtaining a copy |
13 # of this software and associated documentation files (the "Software"), to | 13 # of this software and associated documentation files (the "Software"), to |
14 # deal in the Software without restriction, including without limitation the | 14 # deal in the Software without restriction, including without limitation the |
(...skipping 493 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
508 fi || exit 1 | 508 fi || exit 1 |
509 | 509 |
510 trap '' 0 | 510 trap '' 0 |
511 fi | 511 fi |
512 done | 512 done |
513 | 513 |
514 # Local variables: | 514 # Local variables: |
515 # eval: (add-hook 'write-file-hooks 'time-stamp) | 515 # eval: (add-hook 'write-file-hooks 'time-stamp) |
516 # time-stamp-start: "scriptversion=" | 516 # time-stamp-start: "scriptversion=" |
517 # time-stamp-format: "%:y-%02m-%02d.%02H" | 517 # time-stamp-format: "%:y-%02m-%02d.%02H" |
518 # time-stamp-end: "$" | 518 # time-stamp-time-zone: "UTC" |
| 519 # time-stamp-end: "; # UTC" |
519 # End: | 520 # End: |
OLD | NEW |