diff options
author | Thomas Bächler <thomas@archlinux.org> | 2006-08-06 20:53:27 +0200 |
---|---|---|
committer | Thomas Bächler <thomas@archlinux.org> | 2006-08-06 20:53:27 +0200 |
commit | 87435ead23ec7e8538d8051d30dc552f92ffb8ae (patch) | |
tree | 58f0ba8c3bf696198b9fbb2c9eade9c14da36485 /init | |
parent | d21b21ae50c674e3f663ec67a72e9cf3354cfb1a (diff) | |
download | mkinitcpio-87435ead23ec7e8538d8051d30dc552f92ffb8ae.tar.gz mkinitcpio-87435ead23ec7e8538d8051d30dc552f92ffb8ae.tar.xz |
init fix part 2 \:\(
git-svn-id: http://projects.archlinux.org/svn/initramfs/mkinitcpio@145 880c04e9-e011-0410-abf7-b926e227c9cd
Diffstat (limited to 'init')
-rw-r--r-- | init | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -32,7 +32,7 @@ if [ "x${disablehooks}" != "x" ]; then fi if [ "x${disablemodules}" != "x" ]; then - for d in $(subs -n ',' ${disablemodules}); do + for d in $(split ${disablemodules} ','); do export "mod_${d}=disabled" done fi |