diff options
author | Armijn Hemel | 2006-01-31 15:53:58 +0000 |
---|---|---|
committer | Armijn Hemel | 2006-01-31 15:53:58 +0000 |
commit | 761dceaaaeb641e6720571acf14c49b3ba1bd69d (patch) | |
tree | a8b083ab95597b3bc02273e6b92b8602e6e1d5ef /pkgs | |
parent | b8a0ebe410a4bf6ff184fe5c7e6b3463c2899a8c (diff) |
fix a comparison in the test
svn path=/nixpkgs/trunk/; revision=4642
Diffstat (limited to 'pkgs')
-rw-r--r-- | pkgs/misc/sane-backends/builder.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/misc/sane-backends/builder.sh b/pkgs/misc/sane-backends/builder.sh index 4ecd717f0a43..f3edf124ec82 100644 --- a/pkgs/misc/sane-backends/builder.sh +++ b/pkgs/misc/sane-backends/builder.sh @@ -1,7 +1,7 @@ source $stdenv/setup postInstall() { - if test $hotplugSupport = "1" ; then + if test "$hotplugSupport" = "1" ; then ensureDir $out/etc/hotplug/usb/ cp tools/hotplug/* $out/etc/hotplug/usb/ fi |