diff options
| author | Ulf Hermann <[email protected]> | 2017-02-24 18:20:26 +0100 |
|---|---|---|
| committer | Ulf Hermann <[email protected]> | 2017-04-27 08:16:18 +0000 |
| commit | 8aa093b10baaed88a8721ec02f4d07ceb40d62e5 (patch) | |
| tree | 211a255445c4b13b61997a432c03993b0a198a91 /libcpu/Makefile.am | |
| parent | 14558954b6e6b5ae759c8ee3e11d5f4a39ee9e23 (diff) | |
Add EXEEXT to gendis
Otherwise the build will fail on systems that actually need file
extension for executables.
Change-Id: Ief8daaf158182089aa65a9fd693b43c1f4cae9fb
Reviewed-by: Christian Kandeler <[email protected]>
Diffstat (limited to 'libcpu/Makefile.am')
| -rw-r--r-- | libcpu/Makefile.am | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libcpu/Makefile.am b/libcpu/Makefile.am index b98b5838..31fc906b 100644 --- a/libcpu/Makefile.am +++ b/libcpu/Makefile.am @@ -58,10 +58,10 @@ endif if MAINTAINER_MODE noinst_HEADERS = memory-access.h i386_parse.h i386_data.h -noinst_PROGRAMS = i386_gendis +noinst_PROGRAMS = i386_gendis$(EXEEXT) -$(srcdir)/%_dis.h: %_defs i386_gendis - $(AM_V_GEN)./i386_gendis $< > $@T +$(srcdir)/%_dis.h: %_defs i386_gendis$(EXEEXT) + $(AM_V_GEN)./i386_gendis$(EXEEXT) $< > $@T $(AM_V_at)mv -f $@T $@ else |
