From f5dd60ca38738fb787d7e68510dec982991bbd95 Mon Sep 17 00:00:00 2001 From: Mike Gabriel Date: Mon, 7 Feb 2022 16:55:25 +0100 Subject: .travis.yml: Run CI builds on Travis CI's Ubuntu focal base system and disable ppc64el builds. --- .travis.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 51db47f..73bc55b 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,11 +1,11 @@ # vim: set ts=2 sts=2 sw=2 expandtab : -dist: bionic +dist: focal language: shell os: linux arch: - amd64 - - ppc64le +# - ppc64le services: - docker -- cgit v1.2.3 From 6af097364f37b749533b766affbdaee27b6e757d Mon Sep 17 00:00:00 2001 From: Robert Tari Date: Mon, 14 Feb 2022 20:38:41 +0100 Subject: CMakeLists.txt: Drop unused CMAKE_INSTALL_*PKGLIBEXECDIR --- CMakeLists.txt | 2 -- 1 file changed, 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4fdda11..ad433a6 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -38,8 +38,6 @@ endif() # GNU standard installation directories include (GNUInstallDirs) -set (CMAKE_INSTALL_PKGLIBEXECDIR "${CMAKE_INSTALL_LIBEXECDIR}/${CMAKE_PROJECT_NAME}") -set (CMAKE_INSTALL_FULL_PKGLIBEXECDIR "${CMAKE_INSTALL_FULL_LIBEXECDIR}/${CMAKE_PROJECT_NAME}") # Check for prerequisites find_package (PkgConfig REQUIRED) -- cgit v1.2.3