Date: Tue, 13 Nov 2012 03:56:50 +0000 (UTC) From: Neel Natu <neel@FreeBSD.org> To: src-committers@freebsd.org, svn-src-projects@freebsd.org Subject: svn commit: r242946 - projects/bhyve/sys/dev/aic7xxx/aicasm Message-ID: <201211130356.qAD3uoUW075712@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: neel Date: Tue Nov 13 03:56:50 2012 New Revision: 242946 URL: http://svnweb.freebsd.org/changeset/base/242946 Log: Revert r229954 which in turn had reverted r228556 in projects/bhyve. This was done to work around build issues when building projects/bhyve on an 8.x system at the time. The workaround is no longer needed so re-instantiate r228556 in projects/bhyve. Discussed with: grehan@ Obtained from: NetApp Modified: projects/bhyve/sys/dev/aic7xxx/aicasm/aicasm_macro_scan.l projects/bhyve/sys/dev/aic7xxx/aicasm/aicasm_scan.l Modified: projects/bhyve/sys/dev/aic7xxx/aicasm/aicasm_macro_scan.l ============================================================================== --- projects/bhyve/sys/dev/aic7xxx/aicasm/aicasm_macro_scan.l Tue Nov 13 03:27:43 2012 (r242945) +++ projects/bhyve/sys/dev/aic7xxx/aicasm/aicasm_macro_scan.l Tue Nov 13 03:56:50 2012 (r242946) @@ -66,6 +66,8 @@ static char msgbuf[255]; extern int mmlex(void); %} +%option noinput + WORD [A-Za-z_][-A-Za-z_0-9]* SPACE [ \t]+ MCARG [^(), \t]+ Modified: projects/bhyve/sys/dev/aic7xxx/aicasm/aicasm_scan.l ============================================================================== --- projects/bhyve/sys/dev/aic7xxx/aicasm/aicasm_scan.l Tue Nov 13 03:27:43 2012 (r242945) +++ projects/bhyve/sys/dev/aic7xxx/aicasm/aicasm_scan.l Tue Nov 13 03:56:50 2012 (r242946) @@ -72,6 +72,8 @@ extern void mm_switch_to_buffer(YY_BUFFE extern void mm_delete_buffer(YY_BUFFER_STATE); %} +%option noinput + PATH ([/]*[-A-Za-z0-9_.])+ WORD [A-Za-z_][-A-Za-z_0-9]* SPACE [ \t]+
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201211130356.qAD3uoUW075712>