summaryrefslogtreecommitdiff
path: root/meson.build
diff options
context:
space:
mode:
authorDirk-Jan C. Binnema <djcb@djcbsoftware.nl>2023-07-18 23:15:53 +0300
committerDirk-Jan C. Binnema <djcb@djcbsoftware.nl>2023-07-18 23:18:21 +0300
commit6ad5cccc537fdfd82efd01b77c45591c76dc7b6f (patch)
tree64f660617ce7c03e1c0e956253a0dbcfbe4a0c13 /meson.build
parent885903c496d8ad572a3ff919d3c521c5e217bdba (diff)
store/index: and unit test for circular symlink
Check that we bail out early
Diffstat (limited to 'meson.build')
-rw-r--r--meson.build4
1 files changed, 4 insertions, 0 deletions
diff --git a/meson.build b/meson.build
index a8056cd..4182139 100644
--- a/meson.build
+++ b/meson.build
@@ -144,8 +144,11 @@ endif
dependency('cld2', required : false)
+# note: these are for the unit-tests
+
cp=find_program('cp')
mv=find_program('mv')
+ln=find_program('ln')
rm=find_program('rm')
awk=find_program(['gawk', 'awk'])
gzip=find_program('gzip')
@@ -153,6 +156,7 @@ gzip=find_program('gzip')
config_h_data.set_quoted('CP_PROGRAM', cp.full_path())
config_h_data.set_quoted('MV_PROGRAM', mv.full_path())
config_h_data.set_quoted('RM_PROGRAM', rm.full_path())
+config_h_data.set_quoted('LN_PROGRAM', ln.full_path())
config_h_data.set_quoted('AWK_PROGRAM', awk.full_path())
config_h_data.set_quoted('GZIP_PROGRAM', gzip.full_path())