From c7d308a9ba6c0ef1639b7b78848a3dd2117fde0a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sl=C3=A1vek=20Banko?= Date: Thu, 30 Jul 2020 01:12:11 +0200 Subject: Use tde_create_tarball, which is ready for reproducible builds, instead of calling 'tar' and requiring GNU extensions. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Slávek Banko --- ConfigureChecks.cmake | 23 ----------------------- 1 file changed, 23 deletions(-) (limited to 'ConfigureChecks.cmake') diff --git a/ConfigureChecks.cmake b/ConfigureChecks.cmake index 83bcbfc6..dae26834 100644 --- a/ConfigureChecks.cmake +++ b/ConfigureChecks.cmake @@ -75,26 +75,3 @@ if( WITH_VCS_SUBVERSION ) set( SVN_LIBRARIES svn_client-1 svn_subr-1 svn_ra-1 ) endif( ) - - -##### check for gnu tar extensions ############# -if( NOT TAR ) - message( STATUS "Checking if tar supports GNU extensions" ) - foreach( TAR_CMD tar gtar gnutar ) - if( NOT TAR ) - execute_process( - COMMAND ${TAR_CMD} --version - OUTPUT_VARIABLE TAR_VERSION - ERROR_VARIABLE TAR_VERSION - ) - if( "${TAR_VERSION}" MATCHES "(GNU tar)" ) - set( TAR "${TAR_CMD}" CACHE INTERNAL "" FORCE ) - endif( ) - endif( ) - endforeach( TAR_CMD ) - if( TAR ) - message( STATUS "Checking if tar supports GNU extensions - ${TAR}" ) - else( ) - tde_message_fatal( "tar with GNU extensions is required but not found on your system" ) - endif( ) -endif( ) -- cgit v1.2.3