Blame modules/pam_console/sed-static

Packit Service b29381
#!/bin/sh
Packit Service b29381
Packit Service b29381
[ -n "$1" ] || { echo $0: 'sed what file?' 1>&2 ; exit 1 ; }
Packit Service b29381
Packit Service b29381
sed '
Packit Service b29381
/^YY_BUFFER_STATE yy_create_buffer/s/^/STATIC /
Packit Service b29381
/^void yy_delete_buffer/s/^/STATIC /
Packit Service b29381
/^void yy_flush_buffer/s/^/STATIC /
Packit Service b29381
/^void yy_init_buffer/s/^/STATIC /
Packit Service b29381
/^void yy_load_buffer_state/s/^/STATIC /
Packit Service b29381
/^void YY_BUFFER_STATE yy_scan_buffer/s/^/STATIC /
Packit Service b29381
/^YY_BUFFER_STATE yy_scan_bytes/s/^/STATIC /
Packit Service b29381
/^YY_BUFFER_STATE yy_scan_buffer/s/^/STATIC /
Packit Service b29381
/^YY_BUFFER_STATE yy_scan_string/s/^/STATIC /
Packit Service b29381
/^void yy_switch_to_buffer/s/^/STATIC /
Packit Service b29381
/^extern int yylex/s/^extern /STATIC /
Packit Service b29381
/define YY_DECL int yylex/s/YY_DECL /YY_DECL STATIC /
Packit Service b29381
/^int yyparse/s/^/STATIC /
Packit Service b29381
/^void yyrestart/s/^/STATIC /
Packit Service b29381
' < $1 > sedtmp.$$ && mv sedtmp.$$ $1