Date: Tue, 5 Feb 2013 12:37:51 +0000 (UTC) From: Hans Petter Selasky <hselasky@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r246359 - head/sys/boot/usb Message-ID: <201302051237.r15CbpCe074187@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: hselasky Date: Tue Feb 5 12:37:50 2013 New Revision: 246359 URL: http://svnweb.freebsd.org/changeset/base/246359 Log: Fix depend target. Modified: head/sys/boot/usb/Makefile Modified: head/sys/boot/usb/Makefile ============================================================================== --- head/sys/boot/usb/Makefile Tue Feb 5 12:18:39 2013 (r246358) +++ head/sys/boot/usb/Makefile Tue Feb 5 12:37:50 2013 (r246359) @@ -42,13 +42,13 @@ OBJCOPY?= objcopy SYSCC?= cc CFLAGS+= -DBOOTPROG=\"usbloader\" -CFLAGS+= -DUSB_GLOBAL_INCLUDE_FILE="\"bsd_global.h\"" +CFLAGS+= -DUSB_GLOBAL_INCLUDE_FILE=\"bsd_global.h\" CFLAGS+= -ffunction-sections -fdata-sections CFLAGS+= -ffreestanding CFLAGS+= -Wformat -Wall -CFLAGS+= -I ${S} -CFLAGS+= -I ${T} -CFLAGS+= -I ${.CURDIR} +CFLAGS+= -I${S} +CFLAGS+= -I${T} +CFLAGS+= -I${.CURDIR} CFLAGS+= -g .if ${MACHINE_CPUARCH} == "i386" || ${MACHINE_CPUARCH} == "amd64"
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201302051237.r15CbpCe074187>