1
0
mirror of https://github.com/richardghirst/PiBits.git synced 2025-02-20 14:54:14 +01:00

Fix typo and use rather than '.'

This commit is contained in:
Robin Mallinson 2012-11-11 21:50:33 +00:00
parent 58cf5da5b8
commit 3125b76135

View File

@ -19,9 +19,9 @@ install: servoblaster.ko
@echo "ServoBlaster udev rules complete."
install_autostart: install
@echo "Enabling servoblaster autostart on boot."
@echo "Enabling ServoBlaster autostart on boot."
@sudo mkdir -p $(INSTALL_PATH)
@sudo cp ./servoblaster.ko $(INSTALL_PATH)
@sudo cp $(PWD)/servoblaster.ko $(INSTALL_PATH)
@if ! grep servoblaster /etc/modules > /dev/null 2>&1; then sudo sed -i '$$a\servoblaster' /etc/modules; fi
@sudo depmod -a
@echo "ServoBlaster will now auto start on next boot."