sane-config: Prevent find warnings by moving maxdepth argument first.
This commit is contained in:
parent
f8caa49f00
commit
bb81ba7ef6
@ -5,13 +5,13 @@
|
|||||||
with stdenv.lib;
|
with stdenv.lib;
|
||||||
let installSanePath = path: ''
|
let installSanePath = path: ''
|
||||||
if test -e "${path}/lib/sane"; then
|
if test -e "${path}/lib/sane"; then
|
||||||
find "${path}/lib/sane" -not -type d -maxdepth 1 | while read backend; do
|
find "${path}/lib/sane" -maxdepth 1 -not -type d | while read backend; do
|
||||||
ln -s $backend $out/lib/sane/$(basename $backend)
|
ln -s $backend $out/lib/sane/$(basename $backend)
|
||||||
done
|
done
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if test -e "${path}/etc/sane.d"; then
|
if test -e "${path}/etc/sane.d"; then
|
||||||
find "${path}/etc/sane.d" -not -type d -maxdepth 1 | while read conf; do
|
find "${path}/etc/sane.d" -maxdepth 1 -not -type d | while read conf; do
|
||||||
if test $(basename $conf) = "dll.conf"; then
|
if test $(basename $conf) = "dll.conf"; then
|
||||||
cat $conf >> $out/etc/sane.d/dll.conf
|
cat $conf >> $out/etc/sane.d/dll.conf
|
||||||
else
|
else
|
||||||
@ -21,7 +21,7 @@ let installSanePath = path: ''
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
if test -e "${path}/etc/sane.d/dll.d"; then
|
if test -e "${path}/etc/sane.d/dll.d"; then
|
||||||
find "${path}/etc/sane.d/dll.d" -not -type d -maxdepth 1 | while read conf; do
|
find "${path}/etc/sane.d/dll.d" -maxdepth 1 -not -type d | while read conf; do
|
||||||
ln -s $conf $out/etc/sane.d/dll.d/$(basename $conf)
|
ln -s $conf $out/etc/sane.d/dll.d/$(basename $conf)
|
||||||
done
|
done
|
||||||
fi
|
fi
|
||||||
|
Loading…
x
Reference in New Issue
Block a user