Commit ba09e82d authored by Vladimir Bashkirtsev's avatar Vladimir Bashkirtsev

Multiline statements in Makefile should have appropriate line endings

parent 58fc258a
......@@ -6,9 +6,9 @@ all:
install -v -m755 -d /etc/rc.d
mv -v /etc/init.d /etc/rc.d/init.d
ln -s rc.d/init.d /etc/init.d
for n in 0 1 2 3 4 5 6; do
install -v m755 -d /etc/rc.d/rc$${n}.d
ln -s rc.d/rc$${n}.d /etc/rc$${n}.d
for n in 0 1 2 3 4 5 6; do \
install -v m755 -d /etc/rc.d/rc$${n}.d ; \
ln -s rc.d/rc$${n}.d /etc/rc$${n}.d ; \
done
install -v -m755 -d /etc/chkconfig.d
rm -rf chkconfig-1.13
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment