diff options
author | Thomas Bächler <thomas@archlinux.org> | 2006-08-28 00:21:12 +0200 |
---|---|---|
committer | Thomas Bächler <thomas@archlinux.org> | 2006-08-28 00:21:12 +0200 |
commit | c0dbf1fe0dd2d8aff2fc9637c567fc42e3c9df18 (patch) | |
tree | 84c8dcd4ce9a2d282945bb57f6b421cd78717e75 /init | |
parent | 1e0c88e13f086226fe7dae3bd9e2fcb6aa557422 (diff) | |
download | mkinitcpio-c0dbf1fe0dd2d8aff2fc9637c567fc42e3c9df18.tar.gz mkinitcpio-c0dbf1fe0dd2d8aff2fc9637c567fc42e3c9df18.tar.xz |
temporarily disabled two replace statements
git-svn-id: http://projects.archlinux.org/svn/initramfs/mkinitcpio@164 880c04e9-e011-0410-abf7-b926e227c9cd
Diffstat (limited to 'init')
-rw-r--r-- | init | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -21,8 +21,10 @@ for cmd in $CMDLINE; do [0123456Ss]) export runlevel="$cmd" ;; single) export runlevel="S" ;; #some people use 'single' # only export stuff that does work with dash :) - *=*) cmd="$(replace "${cmd}" '.' '_')" - cmd="$(replace "${cmd}" '-' '_')" + *=*) # These should only be applied to the lefthand side of the expression + # Disable them until a fix is available, as they break things + #cmd="$(replace "${cmd}" '.' '_')" + #cmd="$(replace "${cmd}" '-' '_')" export "${cmd}" ;; *) cmd="$(replace "${cmd}" '.' '_')" |