]> code.delx.au - gnu-emacs/blobdiff - lisp/version.el
Remove build system name from deterministic dumps
[gnu-emacs] / lisp / version.el
index 77188a51ee3b03e5f5895b85a2a89fe406805937..ba24964bd2554540ba884b850d09eb45bdddf02a 100644 (file)
@@ -38,12 +38,13 @@ This variable first existed in version 19.23.")
   "Minor version number of this version of Emacs.
 This variable first existed in version 19.23.")
 
+;; FIXME: The next variable should also be a constant if
+;; `deterministic-dump' is t.
 (defconst emacs-build-time (current-time)
   "Time at which Emacs was dumped out.")
 
-;; I think this should be obsoleted/removed.  It's just one more meaningless
-;; difference between different builds.  It's usually not even an fqdn.
-(defconst emacs-build-system (system-name)
+(defconst emacs-build-system
+  (if deterministic-dump "elided" (system-name))
   "Name of the system on which Emacs was built.")
 
 (defvar motif-version-string)