guile-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Guile-commits] GNU Guile branch, stable-2.0, updated. v2.0.0-155-g1c8a6


From: Andy Wingo
Subject: [Guile-commits] GNU Guile branch, stable-2.0, updated. v2.0.0-155-g1c8a630
Date: Thu, 31 Mar 2011 21:34:43 +0000

This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "GNU Guile".

http://git.savannah.gnu.org/cgit/guile.git/commit/?id=1c8a6308c0050189a777d9384f270aea3206c2e0

The branch, stable-2.0 has been updated
       via  1c8a6308c0050189a777d9384f270aea3206c2e0 (commit)
      from  987b8160f58185c50c4cf4703eb15f04f6cd9f89 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit 1c8a6308c0050189a777d9384f270aea3206c2e0
Author: Andy Wingo <address@hidden>
Date:   Thu Mar 31 23:33:00 2011 +0200

    fix duplicate path in uninstalled-env
    
    * meta/uninstalled-env.in: Our code that checked for paths already being
      in the load path was not working for the last entry in the load path.
      This caused the last entry to be re-added to the beginning, which also
      caused relative filename canonicalization to prepend "module/" to
      everything.
    
      Terrible.

-----------------------------------------------------------------------

Summary of changes:
 meta/uninstalled-env.in |    3 +++
 1 files changed, 3 insertions(+), 0 deletions(-)

diff --git a/meta/uninstalled-env.in b/meta/uninstalled-env.in
index b3deed5..4faad64 100644
--- a/meta/uninstalled-env.in
+++ b/meta/uninstalled-env.in
@@ -59,10 +59,12 @@ else
     # The ":" prevents prefix aliasing.
     case x"$GUILE_LOAD_PATH" in
       x*${top_srcdir}${d}:*) ;;
+      x*${top_srcdir}${d}) ;;
       *) GUILE_LOAD_PATH="${top_srcdir}${d}:$GUILE_LOAD_PATH" ;;
     esac
     case x"$GUILE_LOAD_PATH" in
       x*${top_builddir}${d}:*) ;;
+      x*${top_builddir}${d}) ;;
       *) GUILE_LOAD_PATH="${top_builddir}${d}:$GUILE_LOAD_PATH" ;;
     esac
   done
@@ -79,6 +81,7 @@ else
     # The ":" prevents prefix aliasing.
     case x"$GUILE_LOAD_COMPILED_PATH" in
       x*${top_builddir}${d}:*) ;;
+      x*${top_builddir}${d}) ;;
       *) 
GUILE_LOAD_COMPILED_PATH="${top_builddir}${d}:$GUILE_LOAD_COMPILED_PATH" ;;
     esac
   done


hooks/post-receive
-- 
GNU Guile



reply via email to

[Prev in Thread] Current Thread [Next in Thread]