1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2025-06-27 08:31:16 +02:00

Fix a few warnings

This commit is contained in:
Robert Hensing 2025-02-17 19:29:01 +01:00
parent db7577a660
commit c5fcb1bd50
6 changed files with 6 additions and 10 deletions

View file

@ -57,10 +57,10 @@ libdir = join_paths(prefix, get_option('libdir'))
# Required Programs
#-------------------------------------------------
xz = find_program('xz')
find_program('xz')
xsubpp = find_program('xsubpp')
perl = find_program('perl')
curl = find_program('curl')
find_program('curl')
yath = find_program('yath', required : false)
# Required Libraries
@ -157,7 +157,7 @@ subdir(lib_dir)
if get_option('tests').enabled()
yath_rc_conf = configuration_data()
yath_rc_conf.set('lib_dir', lib_dir)
yath_rc = configure_file(
configure_file(
output : '.yath.rc',
input : '.yath.rc.in',
configuration : yath_rc_conf,