From 62b040336328d99ade41776bd52b1d7cd7298629 Mon Sep 17 00:00:00 2001 From: dale_mellor Date: Sat, 5 Jul 2003 12:13:19 +0000 Subject: Disabled installation of cron, crontab by default. Fixed up all information files to reflect this. --- environment.scm | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'environment.scm') diff --git a/environment.scm b/environment.scm index e4d59a8..f2a8119 100644 --- a/environment.scm +++ b/environment.scm @@ -36,14 +36,14 @@ ;; to control is added at the end of the list. (define (impose-default-environment env-alist passwd-entry) - (append (list (cons "HOME" (passwd:dir passwd-entry)) - (cons "CWD" (passwd:dir passwd-entry)) - (cons "SHELL" (passwd:shell passwd-entry)) - '("TERM" . #f) - '("TERMCAP" . #f)) + (append `(("HOME" . ,(passwd:dir passwd-entry)) + ("CWD" . ,(passwd:dir passwd-entry)) + ("SHELL" . ,(passwd:shell passwd-entry)) + ("TERM" . #f) + ("TERMCAP" . #f)) env-alist - (list (cons "LOGNAME" (passwd:name passwd-entry)) - (cons "USER" (passwd:name passwd-entry))))) + `(("LOGNAME" . ,(passwd:name passwd-entry)) + ("USER" . ,(passwd:name passwd-entry))))) -- cgit v1.2.3