summaryrefslogtreecommitdiffstats
path: root/keyboards/handwired/woodpad/rules.mk
diff options
context:
space:
mode:
authordankm <dan.mcgregor@usask.ca>2018-03-26 22:08:08 +0200
committerJack Humbert <jack.humb@gmail.com>2018-03-26 22:08:08 +0200
commit19a1fbaca2137a9d4cd529e363039a612a4f941d (patch)
tree83f88e254ccb527b2272b012d982ffa80086fb5a /keyboards/handwired/woodpad/rules.mk
parentae7284edb8bd8ed7fcab29415049bf03baf57f8d (diff)
downloadqmk_firmware-19a1fbaca2137a9d4cd529e363039a612a4f941d.tar.gz
qmk_firmware-19a1fbaca2137a9d4cd529e363039a612a4f941d.tar.xz
Better non-Linux support (#2524)
* grep -> $(GREP) Some UNIXy systems (FreeBSD for example) don't use GNU grep by default. Allow the user to specify which grep implementation to use so that GNU grep can be specified. * Allow using versioned avr-gcc command Don't hardcode "avr-gcc", and allow strings such as "avr-gcc8", or "avr-gcc-7.3.0" to match checks for "avr-gcc".
Diffstat (limited to 'keyboards/handwired/woodpad/rules.mk')
-rw-r--r--keyboards/handwired/woodpad/rules.mk4
1 files changed, 2 insertions, 2 deletions
diff --git a/keyboards/handwired/woodpad/rules.mk b/keyboards/handwired/woodpad/rules.mk
index 11f096581..f8c488307 100644
--- a/keyboards/handwired/woodpad/rules.mk
+++ b/keyboards/handwired/woodpad/rules.mk
@@ -71,8 +71,8 @@ RGBLIGHT_ENABLE ?= no
# while [ -z $$USB ]; do \
# sleep 1; \
# ls /dev/tty* > /tmp/2; \
-# USB=`diff /tmp/1 /tmp/2 | grep -o '/dev/tty.*'`; \
+# USB=`diff /tmp/1 /tmp/2 | $(GREP) -o '/dev/tty.*'`; \
# done; \
# avrdude -p $(MCU) -c avr109 -P $$USB -U flash:w:$(BUILD_DIR)/$(TARGET).hex
#
-#.PHONY: avrdude \ No newline at end of file
+#.PHONY: avrdude