File: fix-checklib-fail.patch

package info (click to toggle)
libdata-structure-util-perl 0.16-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye, buster, stretch
  • size: 212 kB
  • ctags: 29
  • sloc: perl: 862; makefile: 2
file content (18 lines) | stat: -rw-r--r-- 475 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
Description:  Trigger build failure when a compiler is not found
Origin: vendor
Forwarded: not-needed
Author: Alessandro Ghedini <ghedo@debian.org>
Reviewed-by: Alessandro Ghedini <ghedo@debian.org>
Last-Update: 2012-08-07

--- a/Makefile.PL
+++ b/Makefile.PL
@@ -8,7 +8,7 @@ use Devel::CheckLib;
 use ExtUtils::MakeMaker;
 
 # Check that we have a C compiler
-check_lib_or_exit();
+assert_lib();
 
 my %mm_args = (
   ( MM->can( 'signature_target' ) ? ( SIGN => 1 ) : () ),