diff options
author | maximilian attems <maks@debian.org> | 2007-06-11 00:42:05 +0200 |
---|---|---|
committer | maximilian attems <maks@debian.org> | 2007-06-11 00:42:05 +0200 |
commit | ad5ae668b01884a4ef99d14bbfef7ce07f908801 (patch) | |
tree | 6f8b2cdd70844b9c4cdab4307b1c0902b8e0e015 /scripts/local | |
parent | ce60ba266ecf3724bede535b21cf61377ac52002 (diff) | |
download | initramfs-tools-ad5ae668b01884a4ef99d14bbfef7ce07f908801.tar.gz initramfs-tools-ad5ae668b01884a4ef99d14bbfef7ce07f908801.zip |
scripts/local: use simpler fstype invocation
compatible with etch released klibc
Diffstat (limited to 'scripts/local')
-rw-r--r-- | scripts/local | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/local b/scripts/local index 459ba8d..429d1f6 100644 --- a/scripts/local +++ b/scripts/local @@ -12,7 +12,7 @@ get_fstype () if [ -x /lib/udev/vol_id ]; then FSTYPE=$(/lib/udev/vol_id -t "${FS}" 2> /dev/null) else - eval $(fstype < "${FS}" 2> /dev/null) + eval $(fstype "${FS}" 2> /dev/null) fi RET=$? |