summaryrefslogtreecommitdiff
path: root/src/sysdep.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/sysdep.c')
-rw-r--r--src/sysdep.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/src/sysdep.c b/src/sysdep.c
index b01c64d52a..a01bf1d7c1 100644
--- a/src/sysdep.c
+++ b/src/sysdep.c
@@ -1408,11 +1408,10 @@ setup_pty (int fd)
void
init_system_name (void)
{
- if (DETERMINISTIC_DUMP && (might_dump || ! NILP (Vpurify_flag)))
+ if (!build_details)
{
- /* If we're dumping, set the hostname to a literal so that the
- dump is deterministic. */
- Vsystem_name = build_pure_c_string ("elided");
+ /* Set system-name to nil so that the build is deterministic. */
+ Vsystem_name = Qnil;
return;
}
char *hostname_alloc = NULL;