From 28d6b571139998915bce147abb58617884431192 Mon Sep 17 00:00:00 2001 From: dec05eba Date: Thu, 14 Dec 2017 15:22:06 +0100 Subject: Add support for dynamic libraries (shared objects) --- src/PkgConfig.cpp | 4 ---- 1 file changed, 4 deletions(-) (limited to 'src/PkgConfig.cpp') diff --git a/src/PkgConfig.cpp b/src/PkgConfig.cpp index 5f85549..620b1a7 100644 --- a/src/PkgConfig.cpp +++ b/src/PkgConfig.cpp @@ -25,9 +25,7 @@ namespace sibs command += "'"; Result execResult = exec(command.c_str()); if(execResult.isErr()) - { return Result::Err(execResult.getErrMsg()); - } if(execResult.unwrap().exitCode == 1) { @@ -63,9 +61,7 @@ namespace sibs command += "'"; Result execResult = exec(command.c_str()); if(execResult.isErr()) - { return Result::Err(execResult.getErrMsg()); - } if(execResult.unwrap().exitCode == 1) { -- cgit v1.2.3