From 2f9d4e41caeef235e34f6d0b52e232be5f7ceb40 Mon Sep 17 00:00:00 2001 From: Andy Fiddaman Date: Fri, 10 Apr 2020 16:00:43 +0000 Subject: Correct path to elfdump Not all illumos distributions have elfdump available as /usr/ccs/bin/elfdump --- contrib/make_sunver.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- gcc-releases-gcc-14.3.0/contrib/make_sunver.pl.orig +++ gcc-releases-gcc-14.3.0/contrib/make_sunver.pl @@ -55,7 +55,7 @@ # columns. # The path to elfdump. -my $elfdump = "/usr/ccs/bin/elfdump"; +my $elfdump = "/usr/bin/elfdump"; if (-f $elfdump) { open ELFDUMP,$elfdump.' -s '.(join ' ',@OBJECTS).'|' or die $!;