diff options
author | Eric Hameleers <alien@slackware.com> | 2017-01-22 23:12:58 +0100 |
---|---|---|
committer | Eric Hameleers <alien@slackware.com> | 2017-01-22 23:12:58 +0100 |
commit | 713a6fc0454e470c1bea9df56625b382a30a6f28 (patch) | |
tree | 8345640f6da9af27a1d4fd79145dcee755cd7c37 /setup2hd | |
parent | 7db353ccbcbdbe94bba7edfc0cc5a8364cb247ed (diff) | |
download | liveslak-713a6fc0454e470c1bea9df56625b382a30a6f28.tar.gz liveslak-713a6fc0454e470c1bea9df56625b382a30a6f28.tar.xz |
setup2hd: fix a copy/paste error.
Diffstat (limited to 'setup2hd')
-rwxr-xr-x | setup2hd | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -287,7 +287,7 @@ EOF if [ "$MAINSELECT" = "CONFIGURE" ]; then # Patch (e)liloconfig on the target systems to remove hardcoded /mnt: if [ -f /sbin/liloconfig -a -f $T_PX/sbin/liloconfig ]; then - cat /sbin/eliloconfig > $T_PX/sbin/liloconfig + cat /sbin/liloconfig > $T_PX/sbin/liloconfig fi if [ -f /usr/sbin/eliloconfig -a -f $T_PX/usr/sbin/eliloconfig ]; then cat /usr/sbin/eliloconfig > $T_PX/usr/sbin/eliloconfig |