Mercurial > hg > early-roguelike
annotate install-sh @ 282:8b6aba552f6f
Excise md_putchar().
The function wrapped the standard putchar(), doing nothing beside
discarding the return value. That could cause problems with tputs(),
which expects an int to be returned.
| author | John "Elwin" Edwards |
|---|---|
| date | Mon, 18 Sep 2017 19:11:57 -0400 |
| parents | d9badb9c0179 |
| children | 029c1f5c5588 |
| rev | line source |
|---|---|
| 88 | 1 #!/bin/sh |
| 2 # install - install a program, script, or datafile | |
| 3 | |
| 253 | 4 scriptversion=2013-12-25.23; # UTC |
| 88 | 5 |
| 6 # This originates from X11R5 (mit/util/scripts/install.sh), which was | |
| 7 # later released in X11R6 (xc/config/util/install.sh) with the | |
| 8 # following copyright and license. | |
| 9 # | |
| 10 # Copyright (C) 1994 X Consortium | |
| 11 # | |
| 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 | |
| 14 # deal in the Software without restriction, including without limitation the | |
| 15 # rights to use, copy, modify, merge, publish, distribute, sublicense, and/or | |
| 16 # sell copies of the Software, and to permit persons to whom the Software is | |
| 17 # furnished to do so, subject to the following conditions: | |
|
07c4d4883ef2
rogue3: begin porting to autoconf.
John "Elwin" Edwards |
