diff options
author | Thomas Bächler <thomas@archlinux.org> | 2008-03-16 10:55:51 +0100 |
---|---|---|
committer | Thomas Bächler <thomas@archlinux.org> | 2008-03-16 10:55:51 +0100 |
commit | c98f860009e05b4d3f10b914ade3a5fad1df6b24 (patch) | |
tree | c4f8062d5f52cd41d94bf08c38d2fc2d95c130eb /install/base | |
parent | 1f8eed5b46629c3e38207349b505251e3c0cde1c (diff) | |
download | mkinitcpio-c98f860009e05b4d3f10b914ade3a5fad1df6b24.tar.gz mkinitcpio-c98f860009e05b4d3f10b914ade3a5fad1df6b24.tar.xz |
Fix various coding style issues
Diffstat (limited to 'install/base')
-rw-r--r-- | install/base | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/install/base b/install/base index 071e62e..1a5d9bd 100644 --- a/install/base +++ b/install/base @@ -12,14 +12,14 @@ install () add_device "/dev/mem" c 1 1 for f in $(find /lib -name klibc-*.so); do - add_file $f + add_file ${f} done for f in /usr/lib/klibc/bin/*; do - add_file $f /bin/$(basename $f) + add_file ${f} /bin/$(basename ${f}) done for f in /usr/lib/klibc/sbin/*; do - add_file $f /sbin/$(basename $f) + add_file ${f} /sbin/$(basename ${f}) done # add symlink for compatibility add_symlink2 /bin/modprobe /sbin/modprobe |