From: Philip Newton Date: Mon, 2 Jul 2001 22:06:22 +0000 (+0200) Subject: Re: [PATCH perlsnap] '-' !~ /\w/ X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=d35bf2f7dc52dfa2e6a832566c17bdb2cd355777;p=p5sagit%2Fp5-mst-13.2.git Re: [PATCH perlsnap] '-' !~ /\w/ (no Message-Id) p4raw-id: //depot/perl@11108 --- diff --git a/ext/NDBM_File/hints/linux.pl b/ext/NDBM_File/hints/linux.pl index 47f9d2c..405afa7 100644 --- a/ext/NDBM_File/hints/linux.pl +++ b/ext/NDBM_File/hints/linux.pl @@ -3,4 +3,4 @@ # (no null key support) # Jonathan Stowe use Config; -$self->{LIBS} = ['-lgdbm'] if $Config{libs} =~ /\b-lgdbm\b/; +$self->{LIBS} = ['-lgdbm'] if $Config{libs} =~ /(?:^|\s)-lgdbm(?:\s|$)/;