Skip to content

Commit

Permalink
Merge pull request ruslo#1470 from Bjoe/fix-hunter-get-build-flags
Browse files Browse the repository at this point in the history
Fix setting of CXXFLAGS in hunter_get_build_flags (Affect all autotools pkg builds)
  • Loading branch information
ruslo authored Jun 12, 2018
2 parents 6c4d7dc + 22ad20f commit 8dafc0d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion cmake/modules/hunter_get_build_flags.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ function(hunter_get_build_flags)
)
string(STRIP "${cxxflags}" cxxflags)
hunter_status_debug(" CXXFLAGS=${cxxflags}")
set(${PARAM_OUT_CXXFLAGS} ${cflags} PARENT_SCOPE)
set(${PARAM_OUT_CXXFLAGS} ${cxxflags} PARENT_SCOPE)
endif()

if(has_out_ldflags)
Expand Down
2 changes: 1 addition & 1 deletion cmake/projects/gstreamer/hunter.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ hunter_cmake_args(
hunter_cacheable(gstreamer)
hunter_download(
PACKAGE_NAME gstreamer
PACKAGE_INTERNAL_DEPS_ID "1"
PACKAGE_INTERNAL_DEPS_ID "2"
PACKAGE_UNRELOCATABLE_TEXT_FILES
"lib/gstreamer-1.0/libgstcoreelements.la"
"lib/gstreamer-1.0/libgstcoretracers.la"
Expand Down
2 changes: 1 addition & 1 deletion cmake/projects/xau/hunter.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,6 @@ hunter_cmake_args(
hunter_cacheable(xau)
hunter_download(
PACKAGE_NAME xau
PACKAGE_INTERNAL_DEPS_ID "4"
PACKAGE_INTERNAL_DEPS_ID "5"
PACKAGE_UNRELOCATABLE_TEXT_FILES "lib/libXau.la;lib/pkgconfig/xau.pc"
)

0 comments on commit 8dafc0d

Please sign in to comment.