Home | History | Annotate | Download | only in src

Lines Matching refs:ARG

41 static int parse_module_store(char *arg);
42 static int parse_store_root_path(char *arg);
43 static int parse_compiler_path(char *arg);
67 %token <s> ARG
100 module_store: MODULE_STORE '=' ARG {
110 store_root: STORE_ROOT '=' ARG {
119 compiler_dir: COMPILER_DIR '=' ARG {
128 ignore_module_cache: IGNORE_MODULE_CACHE '=' ARG {
140 version: VERSION '=' ARG {
151 target_platform: TARGET_PLATFORM '=' ARG {
163 expand_check: EXPAND_CHECK '=' ARG {
169 file_mode: FILE_MODE '=' ARG {
175 save_previous: SAVE_PREVIOUS '=' ARG {
188 save_linked: SAVE_LINKED '=' ARG {
200 disable_genhomedircon: DISABLE_GENHOMEDIRCON '=' ARG {
211 usepasswd: USEPASSWD '=' ARG {
222 ignoredirs: IGNOREDIRS '=' ARG {
227 handle_unknown: HANDLE_UNKNOWN '=' ARG {
240 bzip_blocksize: BZIP_BLOCKSIZE '=' ARG {
249 bzip_small: BZIP_SMALL '=' ARG {
260 remove_hll: REMOVE_HLL'=' ARG {
332 external_opt: PROG_PATH '=' ARG { PASSIGN(new_external->path, $3); }
333 | PROG_ARGS '=' ARG { PASSIGN(new_external->args, $3); }
486 static int parse_module_store(char *arg)
488 /* arg is already a strdup()ed copy of yytext */
489 if (arg == NULL) {
493 if (strcmp(arg, "direct") == 0) {
498 } else if (*arg == '/') {
500 current_conf->store_path = strdup(arg);
505 if ((s = strchr(arg, ':')) == NULL) {
506 current_conf->store_path = arg;
511 current_conf->store_path = arg;
521 static int parse_store_root_path(char *arg)
523 if (arg == NULL) {
528 current_conf->store_root_path = strdup(arg);
532 static int parse_compiler_path(char *arg)
534 if (arg == NULL) {
538 current_conf->compiler_directory_path = strdup(arg);