diff options
author | Eelco Dolstra <eelco.dolstra@logicblox.com> | 2012-05-22T18·00-0400 |
---|---|---|
committer | Eelco Dolstra <eelco.dolstra@logicblox.com> | 2012-05-22T18·00-0400 |
commit | 591aab7e2166f1c7208cccdda7ce50c3c362f12b (patch) | |
tree | c57e4a3b6f84be577f86982988a6b0a10c1ed5ce /scripts/nix-profile.sh.in | |
parent | e071f87dc5476983c557cf6185fbdeab0c4c67c5 (diff) |
Remove $FONTCONFIG_FILE hack from nix-profile.sh
It's no longer needed because Nixpkgs' fontconfig uses /etc/fonts/fonts.conf as a default, just like other distributions.
Diffstat (limited to 'scripts/nix-profile.sh.in')
-rw-r--r-- | scripts/nix-profile.sh.in | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/scripts/nix-profile.sh.in b/scripts/nix-profile.sh.in index 0c1e1bb80f08..839531349734 100644 --- a/scripts/nix-profile.sh.in +++ b/scripts/nix-profile.sh.in @@ -9,10 +9,3 @@ if test -n "$HOME"; then export PATH=$NIX_LINK/bin:$PATH fi - -# This is a quick hack to make fontconfig-based packages in Nixpkgs -# work out of the box on non-NixOS systems. Of course, we should -# really fix fontconfig... -if test -z "$FONTCONFIG_FILE" -a -e /etc/fonts/fonts.conf; then - export FONTCONFIG_FILE=/etc/fonts/fonts.conf -fi |