From c0048c2f0d261cfd923d2b204fa4d91afc10ee94 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. (cherry picked from commit 24025fe5ed52a054fb5186eb105078ad5dac7ced) --- 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 98091adea3..1850a9ee27 100644 --- a/racket/collects/setup/unixstyle-install.rkt +++ b/racket/collects/setup/unixstyle-install.rkt @@ -374,6 +374,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))