From 48ec05d257a58d22a134652d2fc4ece40e9dae58 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ludovic=20Court=C3=A8s?= Date: Thu, 10 Jul 2008 13:45:12 +0000 Subject: [PATCH] Fix typo in `/etc/profile' that led to a wrong `LD_LIBRARY_PATH'. svn path=/nixos/trunk/; revision=12332 --- etc/profile.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/etc/profile.sh b/etc/profile.sh index d03a4dd4e496..7858a9ee7b2e 100644 --- a/etc/profile.sh +++ b/etc/profile.sh @@ -1,7 +1,7 @@ export PATH=@wrapperDir@:/var/run/current-system/sw/bin:/var/run/current-system/sw/sbin export LD_LIBRARY_PATH=/var/run/opengl-driver/lib if test -n "@nssModulesPath@"; then - LD_LIBRARY_PATH=@nssModulesPath@$:$LD_LIBRARY_PATH + LD_LIBRARY_PATH=@nssModulesPath@:$LD_LIBRARY_PATH fi export MODULE_DIR=@modulesTree@/lib/modules export NIXPKGS_CONFIG=/nix/etc/config.nix