From 19db503e08e4ea46a8b4d9a272605006b6245f88 Mon Sep 17 00:00:00 2001 From: Adam Simpkins Date: Tue, 16 Jan 2018 17:59:08 -0800 Subject: [PATCH] cmake: fix path to FindGLog.cmake Summary: The cmake files refer to this package as "FindGLog", but the file name on disk incorrectly had the 'L' lower cased. This worked on case-insensitive file systems, but caused cmake to fail when used on a case-sensitive file system. This diff fixes the file name to match the name used in the cmake files. This is also more consistent with the existing "FindGFlags" and "FindGMock" packages. Reviewed By: yfeldblum Differential Revision: D6710439 fbshipit-source-id: 19f6824ef6793e505b5a0080c0fefe0b145a41c3 --- CMake/{FindGlog.cmake => FindGLog.cmake} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename CMake/{FindGlog.cmake => FindGLog.cmake} (100%) diff --git a/CMake/FindGlog.cmake b/CMake/FindGLog.cmake similarity index 100% rename from CMake/FindGlog.cmake rename to CMake/FindGLog.cmake -- 2.34.1