From 12616e370c006764602a1c4f77136851f9397ca1 Mon Sep 17 00:00:00 2001 From: Allen Byrne Date: Thu, 4 Apr 2013 10:41:15 -0500 Subject: [svn-r23547] Windows plugins will always be "dll"'s. CMake also uses ";" as a separator - escape it Tested: windows --- src/H5PL.c | 2 +- test/CMakeLists.txt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/H5PL.c b/src/H5PL.c index 35925e1..ef470b7 100644 --- a/src/H5PL.c +++ b/src/H5PL.c @@ -456,7 +456,7 @@ H5PL__find(H5PL_type_t plugin_type, int type_id, char *dir, void **info) FUNC_ENTER_STATIC /* Specify a file mask. *.* = We want everything! */ - sprintf(service, "%s\/*.*", dir); + sprintf(service, "%s\/*.dll", dir); if((hFind = FindFirstFile(service, &fdFile)) == INVALID_HANDLE_VALUE) HGOTO_ERROR(H5E_PLUGIN, H5E_OPENERROR, FAIL, "can't open directory") diff --git a/test/CMakeLists.txt b/test/CMakeLists.txt index 19f610f..8904fee 100644 --- a/test/CMakeLists.txt +++ b/test/CMakeLists.txt @@ -639,7 +639,7 @@ ADD_TEST (NAME testlibinfo COMMAND ${CMAKE_COMMAND} -D "TEST_PROGRAM=$