summary refs log tree commit diff
path: root/pkgs/applications/graphics/sane
diff options
context:
space:
mode:
authorGuillaume Maudoux <layus.on@gmail.com>2020-02-10 17:28:37 +0100
committerGuillaume Maudoux <layus.on@gmail.com>2020-02-10 17:28:37 +0100
commit4979541cadc8977c5e98b28ce245be5720422eb5 (patch)
tree74ddbfecce76df808e019283a8969e48c99e49fc /pkgs/applications/graphics/sane
parent6c651604f47d9d7bcb32dd5ffa4f863d9d70df8c (diff)
downloadnixpkgs-4979541cadc8977c5e98b28ce245be5720422eb5.tar
nixpkgs-4979541cadc8977c5e98b28ce245be5720422eb5.tar.gz
nixpkgs-4979541cadc8977c5e98b28ce245be5720422eb5.tar.bz2
nixpkgs-4979541cadc8977c5e98b28ce245be5720422eb5.tar.lz
nixpkgs-4979541cadc8977c5e98b28ce245be5720422eb5.tar.xz
nixpkgs-4979541cadc8977c5e98b28ce245be5720422eb5.tar.zst
nixpkgs-4979541cadc8977c5e98b28ce245be5720422eb5.zip
sane module: make warning more explicit
Diffstat (limited to 'pkgs/applications/graphics/sane')
-rw-r--r--pkgs/applications/graphics/sane/config.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/applications/graphics/sane/config.nix b/pkgs/applications/graphics/sane/config.nix
index e134391f58c..2ef1e26f5ac 100644
--- a/pkgs/applications/graphics/sane/config.nix
+++ b/pkgs/applications/graphics/sane/config.nix
@@ -36,7 +36,7 @@ stdenv.mkDerivation {
     function symlink () {
       local target=$1 linkname=$2
       if [ -e "$linkname" ]; then
-        echo "warning: conflict for $linkname. Overriding."
+        echo "warning: conflict for $linkname. Overriding $(readlink $linkname) with $target."
       fi
       ln -sfn "$target" "$linkname"
     }