From 24025fe5ed52a054fb5186eb105078ad5dac7ced Mon Sep 17 00:00:00 2001 From: Matthew Flatt Date: Wed, 29 Jan 2014 17:58:16 -0700 Subject: [PATCH] unix-style install: preserve build stamp Instead of preserving specific configuration entries, it's probably better to preserve all of them that are not specifically replaced. I'm going with the simpler change for now, though. --- racket/collects/setup/unixstyle-install.rkt | 1 + 1 file changed, 1 insertion(+) diff --git a/racket/collects/setup/unixstyle-install.rkt b/racket/collects/setup/unixstyle-install.rkt index 786956f971..9561c18e1a 100644 --- a/racket/collects/setup/unixstyle-install.rkt +++ b/racket/collects/setup/unixstyle-install.rkt @@ -376,6 +376,7 @@ (printf "(doc-dir . ~s)\n" (dir: 'doc)) (preserve 'catalogs) (preserve 'doc-search-url) + (preserve 'build-stamp) (when (eq? 'shared (system-type 'link)) ; never true for now (printf " (dll-dir . ~s)\n" (dir: 'lib))) (printf " (lib-dir . ~s)\n" (dir: 'librkt))