aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDylan Baker <dylan@pnwbakers.com>2019-08-19 16:05:29 -0700
committerDylan Baker <dylan@pnwbakers.com>2019-09-09 21:22:26 -0700
commit4ce43a450bccaeccd6c932d5d9227255f1cce6ed (patch)
tree83d2009229350d57ce82e8c94136764ea41566e2
parent4030ee4b6f4c6c65a6b0a772438b7d68835fc529 (diff)
downloadmeson-4ce43a450bccaeccd6c932d5d9227255f1cce6ed.zip
meson-4ce43a450bccaeccd6c932d5d9227255f1cce6ed.tar.gz
meson-4ce43a450bccaeccd6c932d5d9227255f1cce6ed.tar.bz2
tests: pass "cp" as argv[0] in test 162
otherwise illumos gets grumpy. I'm assuming based on the error message that cp, mv, and ln are all the same program hardlinked to different names.
-rw-r--r--test cases/common/162 external program shebang parsing/main.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/test cases/common/162 external program shebang parsing/main.c b/test cases/common/162 external program shebang parsing/main.c
index a90206b..48b080e 100644
--- a/test cases/common/162 external program shebang parsing/main.c
+++ b/test cases/common/162 external program shebang parsing/main.c
@@ -23,7 +23,7 @@ intrp_copyfile (char * src, char * dest)
return 1;
return 0;
#else
- return execlp ("cp", "copyfile", src, dest, NULL);
+ return execlp ("cp", "cp", src, dest, NULL);
#endif
}