1.0.34.14: fix permissions of directories of asdf-using contribs
authorChristophe Rhodes <csr21@cantab.net>
Thu, 28 Jan 2010 11:36:26 +0000 (11:36 +0000)
committerChristophe Rhodes <csr21@cantab.net>
Thu, 28 Jan 2010 11:36:26 +0000 (11:36 +0000)
Report (lp #508485, sbcl-devel variously) and fix from Eugene Ossintsev

NEWS
contrib/asdf-module.mk
version.lisp-expr

diff --git a/NEWS b/NEWS
index b73bb9b..7f64a52 100644 (file)
--- 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
index 132a25a..a9e55d7 100644 (file)
@@ -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` {} \;
index 132f8f1..51d004e 100644 (file)
@@ -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"