svn commit: r253795 - head/sys/modules/usb/runfw

Sergey Kandaurov pluknet at FreeBSD.org
Tue Jul 30 08:09:48 UTC 2013


Author: pluknet
Date: Tue Jul 30 08:09:48 2013
New Revision: 253795
URL: http://svnweb.freebsd.org/changeset/base/253795

Log:
  Fix up paths after r253790.
  While here, use $? contraction.
  
  Reported by:	O. Hartmann

Modified:
  head/sys/modules/usb/runfw/Makefile

Modified: head/sys/modules/usb/runfw/Makefile
==============================================================================
--- head/sys/modules/usb/runfw/Makefile	Tue Jul 30 07:03:52 2013	(r253794)
+++ head/sys/modules/usb/runfw/Makefile	Tue Jul 30 08:09:48 2013	(r253795)
@@ -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>


More information about the svn-src-all mailing list