Re: [PATCH] Drop $(EXEEXT) suffix from shared libraries

2020-12-09 Thread Dmitry V. Levin
On Wed, Dec 09, 2020 at 11:42:44PM +0100, Mark Wielaard wrote: > Hi Dmitry, > > On Thu, 2020-12-10 at 01:20 +0300, Dmitry V. Levin wrote: > > OK, there was no mystery at all: > > > > $ git grep '_PROGRAMS.*_LIBRARIES' > > libasm/Makefile.am:noinst_PROGRAMS = $(noinst_LIBRARIES:_pic.a=.so) > > lib

Re: [PATCH] Drop $(EXEEXT) suffix from shared libraries

2020-12-09 Thread Mark Wielaard
Hi Dmitry, On Thu, 2020-12-10 at 01:20 +0300, Dmitry V. Levin wrote: > OK, there was no mystery at all: > > $ git grep '_PROGRAMS.*_LIBRARIES' > libasm/Makefile.am:noinst_PROGRAMS = $(noinst_LIBRARIES:_pic.a=.so) > libdw/Makefile.am:noinst_PROGRAMS = $(noinst_LIBRARIES:_pic.a=.so) > libelf/Makefi

Re: [PATCH] Drop $(EXEEXT) suffix from shared libraries

2020-12-09 Thread Dmitry V. Levin
On Thu, Dec 10, 2020 at 01:04:14AM +0300, Dmitry V. Levin wrote: > On Wed, Dec 09, 2020 at 08:55:23PM +0100, Mark Wielaard wrote: > > On Sun, 2020-12-06 at 12:49 +0100, Mark Wielaard wrote: > > > On Mon, 2020-11-30 at 21:35 +0100, Mark Wielaard wrote: > > > > On Mon, Nov 30, 2020 at 08:00:00AM +000

Re: [PATCH] Drop $(EXEEXT) suffix from shared libraries

2020-12-09 Thread Dmitry V. Levin
On Wed, Dec 09, 2020 at 08:55:23PM +0100, Mark Wielaard wrote: > On Sun, 2020-12-06 at 12:49 +0100, Mark Wielaard wrote: > > On Mon, 2020-11-30 at 21:35 +0100, Mark Wielaard wrote: > > > On Mon, Nov 30, 2020 at 08:00:00AM +, Dmitry V. Levin wrote: > > > > According to GNU Automake documentation

Re: [PATCH] Drop $(EXEEXT) suffix from shared libraries

2020-12-09 Thread Mark Wielaard
On Sun, 2020-12-06 at 12:49 +0100, Mark Wielaard wrote: > On Mon, 2020-11-30 at 21:35 +0100, Mark Wielaard wrote: > > On Mon, Nov 30, 2020 at 08:00:00AM +, Dmitry V. Levin wrote: > > > According to GNU Automake documentation [1], $(EXEEXT) is the > > > suffix > > > that should be used for execu

Re: [PATCH] Drop $(EXEEXT) suffix from shared libraries

2020-12-06 Thread Mark Wielaard
On Mon, 2020-11-30 at 21:35 +0100, Mark Wielaard wrote: > On Mon, Nov 30, 2020 at 08:00:00AM +, Dmitry V. Levin wrote: > > According to GNU Automake documentation [1], $(EXEEXT) is the > > suffix > > that should be used for executables, it is not applicable for > > shared libraries. > > > > [1

Re: [PATCH] Drop $(EXEEXT) suffix from shared libraries

2020-11-30 Thread Mark Wielaard
On Mon, Nov 30, 2020 at 08:00:00AM +, Dmitry V. Levin wrote: > According to GNU Automake documentation [1], $(EXEEXT) is the suffix > that should be used for executables, it is not applicable for shared > libraries. > > [1] https://www.gnu.org/software/automake/manual/html_node/EXEEXT.html I

[PATCH] Drop $(EXEEXT) suffix from shared libraries

2020-11-30 Thread Dmitry V. Levin
According to GNU Automake documentation [1], $(EXEEXT) is the suffix that should be used for executables, it is not applicable for shared libraries. [1] https://www.gnu.org/software/automake/manual/html_node/EXEEXT.html Signed-off-by: Dmitry V. Levin --- debuginfod/ChangeLog | 4 debugin