From 910f014065dc93219da557e55ce0c23b9ed0679e Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Sun, 2 Jan 2022 13:31:25 +0100 Subject: [PATCH] Fix typo in year update script Fix wrong function name from 81c4fa449b (Use CMake-compatible variable names in configure Info.plist files, 2021-08-15). --- misc/scripts/inc_year | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/misc/scripts/inc_year b/misc/scripts/inc_year index def1f29f8e..917fef0e81 100755 --- a/misc/scripts/inc_year +++ b/misc/scripts/inc_year @@ -27,5 +27,5 @@ run_sed src/common/utilscmn.cpp "s/1995-$old_year/1995-$new_year/" # And Mac files are much newer than that. run_sed CMakeLists.txt "s/2002-$old_year/2002-$new_year/" -run_set build/bakefiles/mac_bundles.bkl "s/2002-$old_year/2002-$new_year/" +run_sed build/bakefiles/mac_bundles.bkl "s/2002-$old_year/2002-$new_year/" run_sed samples/minimal/Info_cocoa.plist "s/2005-$old_year/2005-$new_year/"