From 79a7407034c36e82fa2eca1daa23aae9af6391bd Mon Sep 17 00:00:00 2001 From: Christophe Rhodes Date: Thu, 28 Jan 2010 11:36:26 +0000 Subject: [PATCH] 1.0.34.14: fix permissions of directories of asdf-using contribs Report (lp #508485, sbcl-devel variously) and fix from Eugene Ossintsev --- NEWS | 3 +++ contrib/asdf-module.mk | 2 +- version.lisp-expr | 2 +- 3 files changed, 5 insertions(+), 2 deletions(-) diff --git a/NEWS b/NEWS index b73bb9b..7f64a52 100644 --- a/NEWS +++ b/NEWS @@ -6,6 +6,9 @@ changes relative to sbcl-1.0.34: conversions and for single-float<->double-float conversions on x86-64. * optimization: SB-ROTATE-BYTE:ROTATE-BYTE now generates more efficient code for 32-bit and 64-bit rotations on x86-64. + * bug fix: The install script changes the ownership of directories as well + as files for contrib modules using asdf. (thanks to Eugene Ossintsev; + launchpad bug lp#508485) * bug fix: TRUNCATE with a single single-float or double-float argument is properly inlined when possible. (launchpad bug lp#489388) * bug fix: Passing a rotation count of zero to SB-ROTATE-BYTE:ROTATE-BYTE diff --git a/contrib/asdf-module.mk b/contrib/asdf-module.mk index 132a25a..a9e55d7 100644 --- a/contrib/asdf-module.mk +++ b/contrib/asdf-module.mk @@ -35,4 +35,4 @@ test: all # preserve owner, so chown after installing for the current user. install: $(EXTRA_INSTALL_TARGETS) tar cf - . | ( cd "$(BUILD_ROOT)$(INSTALL_DIR)" && tar xpvf - ) - find "$(BUILD_ROOT)$(INSTALL_DIR)" -type f -exec chown `id -u`:`id -g` {} \; + find "$(BUILD_ROOT)$(INSTALL_DIR)" -exec chown `id -u`:`id -g` {} \; diff --git a/version.lisp-expr b/version.lisp-expr index 132f8f1..51d004e 100644 --- a/version.lisp-expr +++ b/version.lisp-expr @@ -17,4 +17,4 @@ ;;; checkins which aren't released. (And occasionally for internal ;;; versions, especially for internal versions off the main CVS ;;; branch, it gets hairier, e.g. "0.pre7.14.flaky4.13".) -"1.0.34.13" +"1.0.34.14" -- 1.7.10.4