Home | History | Annotate | Download | only in sysinst

Lines Matching defs:real_path

294 	static char real_path[MAXPATHLEN];
306 snprintf(real_path, sizeof(real_path), "%s%s", prefix, suffix);
308 snprintf(real_path, sizeof(real_path), "%s/%s",
310 return (real_path);
409 const char *real_path = target_expand(tgt_path);
411 return run_program(0, "/bin/cp %s %s", srcpath, real_path);
647 const char *real_path = target_expand(path);
650 result = !file_mode_match(real_path, mode);
651 scripting_fprintf(NULL, "if [ $? != 0 ]; then echo \"%s does not exist!\"; fi\n", real_path);
654 printf("target_test(%o, %s) returning %d\n", mode, real_path, result);