summaryrefslogtreecommitdiff
path: root/test cases/common
diff options
context:
space:
mode:
authorJussi Pakkanen <jpakkane@gmail.com>2016-11-18 22:39:24 +0200
committerJussi Pakkanen <jpakkane@gmail.com>2016-11-20 16:54:19 -0500
commit0250b2cce633f2c66850e88cb9ccc0f17b6fa95a (patch)
tree4c3e3c04ae80df8a344aee948619c886832cc842 /test cases/common
parent82bb24b264a1d46c7037b69f1cc10b123bbcf9b5 (diff)
downloadmeson-0250b2cce633f2c66850e88cb9ccc0f17b6fa95a.tar.gz
Can give many alternative names to find_program to simplify searching.
Diffstat (limited to 'test cases/common')
-rw-r--r--test cases/common/31 find program/meson.build2
1 files changed, 1 insertions, 1 deletions
diff --git a/test cases/common/31 find program/meson.build b/test cases/common/31 find program/meson.build
index ae7170379..ba5386d9b 100644
--- a/test cases/common/31 find program/meson.build
+++ b/test cases/common/31 find program/meson.build
@@ -9,7 +9,7 @@ if build_machine.system() == 'windows'
# the program can be found.
cp = find_program('xcopy')
else
- cp = find_program('cp')
+ cp = find_program('donotfindme', 'cp')
gen = generator(cp, \
output : '@BASENAME@.c', \
arguments : ['@INPUT@', '@OUTPUT@'])