Codebase list facter / 1fe21ac
(maint) Merge up 3c516f6 to master Generated by CI * commit '3c516f6777112edad92cd4a2e0334486656bfc13': (FACT-1819) Keep libfacter load failure backtrace (packaging) Bump to version '3.10.1' [no-promote] (packaging) Bump to version '3.9.6' [no-promote] Jenkins CI 6 years ago
3 changed file(s) with 3 addition(s) and 3 deletion(s). Raw diff Collapse all Expand all
00 cmake_minimum_required(VERSION 3.2.2)
1 project(FACTER VERSION 3.10.0)
1 project(FACTER VERSION 3.10.1)
22
33 # Set this early, so it's available. AIX gets weird, man.
44 if("${CMAKE_SYSTEM_NAME}" MATCHES "AIX")
3737 # could be handy for archiving the generated documentation or if some version
3838 # control system is used.
3939
40 PROJECT_NUMBER = 3.10.0
40 PROJECT_NUMBER = 3.10.1
4141
4242 # Using the PROJECT_BRIEF tag one can provide an optional one line description
4343 # for a project that appears at the top of each page and should give viewer a
3838 end
3939 require "#{facter_dir}/${LIBFACTER_INSTALL_DESTINATION}/libfacter.so"
4040 rescue LoadError
41 raise LoadError.new('libfacter was not found. Please make sure it was installed to the expected location.')
41 raise LoadError, "libfacter was not found. Please make sure it was installed to the expected location.\n" + ($!.message || ''), $!.backtrace
4242 end
4343 end
4444 end