diff options
| author | Glenn Morris | 2020-11-15 15:08:58 -0800 |
|---|---|---|
| committer | Glenn Morris | 2020-11-15 15:09:17 -0800 |
| commit | 53e2a612ad7441ac24d27872d404f6f0f15a3962 (patch) | |
| tree | ead85440b2dbd702d786f93a51ab31e417c72e50 /lib-src | |
| parent | 286c63277287a52148d8b9a8b57979d1d04d2ed0 (diff) | |
| download | emacs-53e2a612ad7441ac24d27872d404f6f0f15a3962.tar.gz emacs-53e2a612ad7441ac24d27872d404f6f0f15a3962.zip | |
; * lib-src/make-fingerprint.c: Update commentary.
Diffstat (limited to 'lib-src')
| -rw-r--r-- | lib-src/make-fingerprint.c | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/lib-src/make-fingerprint.c b/lib-src/make-fingerprint.c index c013d0aca3b..b72ee90bbca 100644 --- a/lib-src/make-fingerprint.c +++ b/lib-src/make-fingerprint.c | |||
| @@ -19,9 +19,12 @@ You should have received a copy of the GNU General Public License | |||
| 19 | along with GNU Emacs. If not, see <https://www.gnu.org/licenses/>. */ | 19 | along with GNU Emacs. If not, see <https://www.gnu.org/licenses/>. */ |
| 20 | 20 | ||
| 21 | 21 | ||
| 22 | /* The arguments given to this program are all the object files that | 22 | /* The argument given to this program is the initial version of the |
| 23 | go into building GNU Emacs. There is no special search logic to find | 23 | temacs executable file used when building GNU Emacs. This program computes |
| 24 | the files. */ | 24 | a digest fingerprint for the executable, and modifies the binary in |
| 25 | place, replacing all instances of the existing fingerprint (normally | ||
| 26 | the default fingerprint from libgnu's lib/fingerprint.c) with the | ||
| 27 | new value. With option -r, it just prints the digest. */ | ||
| 25 | 28 | ||
| 26 | #include <config.h> | 29 | #include <config.h> |
| 27 | 30 | ||