mirror of
https://github.com/mupen64plus/mupen64plus-win32-deps.git
synced 2025-04-02 10:52:39 -04:00
17 lines
422 B
Awk
17 lines
422 B
Awk
# noassign.awk --- library file to avoid the need for a
|
|
# special option that disables command-line assignments
|
|
#
|
|
# Arnold Robbins, arnold@skeeve.com, Public Domain
|
|
# October 1999
|
|
|
|
function disable_assigns(argc, argv, i)
|
|
{
|
|
for (i = 1; i < argc; i++)
|
|
if (argv[i] ~ /^[A-Za-z_][A-Za-z_0-9]*=.*/)
|
|
argv[i] = ("./" argv[i])
|
|
}
|
|
|
|
BEGIN {
|
|
if (No_command_assign)
|
|
disable_assigns(ARGC, ARGV)
|
|
}
|