diff options
author | pluknet <pluknet@FreeBSD.org> | 2013-07-30 08:09:48 +0000 |
---|---|---|
committer | pluknet <pluknet@FreeBSD.org> | 2013-07-30 08:09:48 +0000 |
commit | 93919460a4d0382930ee0cc594f0c6b09bcd30ab (patch) | |
tree | 7c77a170e80cc27621e7f22c6fa0f98e59bbdbeb /sys/modules/usb | |
parent | 975454212145290ba072dbd5f59b617c460c7158 (diff) | |
download | FreeBSD-src-93919460a4d0382930ee0cc594f0c6b09bcd30ab.zip FreeBSD-src-93919460a4d0382930ee0cc594f0c6b09bcd30ab.tar.gz |
Fix up paths after r253790.
While here, use $? contraction.
Reported by: O. Hartmann
Diffstat (limited to 'sys/modules/usb')
-rw-r--r-- | sys/modules/usb/runfw/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/modules/usb/runfw/Makefile b/sys/modules/usb/runfw/Makefile index c6e7884..3734153 100644 --- a/sys/modules/usb/runfw/Makefile +++ b/sys/modules/usb/runfw/Makefile @@ -5,7 +5,7 @@ FIRMWS= run.fw:runfw:1 CLEANFILES= run.fw -run.fw: ${.CURDIR}/../../contrib/dev/run/rt2870.fw.uu - uudecode -p ${.CURDIR}/../../contrib/dev/run/rt2870.fw.uu > ${.TARGET} +run.fw: ${.CURDIR}/../../../contrib/dev/run/rt2870.fw.uu + uudecode -p $? > ${.TARGET} .include <bsd.kmod.mk> |