From: Stefano Lattarini Date: Sat, 16 Jun 2012 18:42:45 +0000 (+0200) Subject: [ng] automake: remove two unused variables from '&handle_texinfo_source' X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b4ee81bd6a33af7432bb600b799924fe5c014fad;p=thirdparty%2Fautomake.git [ng] automake: remove two unused variables from '&handle_texinfo_source' * automake.in (handle_texinfo_source): Remove '$spfx' and '$ssfx'. Signed-off-by: Stefano Lattarini --- diff --git a/automake.in b/automake.in index a26f00d84..d65cad0f0 100644 --- a/automake.in +++ b/automake.in @@ -2852,11 +2852,8 @@ sub handle_texinfo_source ($$$@) { my ($source, $dest, $insrc, @deps) = @_; - # Split 'a.texi' into 'a' and '.texi'. - my ($spfx, $ssfx) = ($source =~ /^(.*?)(\.[^.]*)?$/); my ($dpfx, $dsfx) = ($dest =~ /^(.*?)(\.[^.]*)?$/); - $ssfx ||= ""; $dsfx ||= ""; my $sdir = dirname $source;