From d09758f723487ace44f21ffb2cd6ae4463b6e131 Mon Sep 17 00:00:00 2001 From: Alexander Medvednikov Date: Mon, 1 Jul 2019 17:29:26 +0200 Subject: [PATCH] fix a typo --- compiler/main.v | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compiler/main.v b/compiler/main.v index 8ec35ee857..dafc6629e7 100644 --- a/compiler/main.v +++ b/compiler/main.v @@ -646,7 +646,7 @@ fn (v &V) v_files_from_dir(dir string) []string { continue } if file.ends_with('_mac.v') && v.os != MAC { - lin_file := file.replace('_mav.v', '_lin.v') + lin_file := file.replace('_mac.v', '_lin.v') // println('lin_file="$lin_file"') // If there are both _mav.v and _lin.v, don't use _mav.v if os.file_exists('$dir/$lin_file') {