From 16d929b024c31d54a7f8a72eab094376c7be27f5 Mon Sep 17 00:00:00 2001 From: Mauro Carvalho Chehab Date: Wed, 26 May 2021 10:20:39 +0200 Subject: [PATCH] Makefile.am: fix build header rules non-standard-hisilicon.h was added twice; ras-memory-failure-handler.h is missing. Due to that, the tarball becomes incomplete, causing build errors. While here, also adjust .travis.yml to use --enable-all. Signed-off-by: Mauro Carvalho Chehab --- .travis.yml | 2 +- Makefile.am | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 7855b8e..b6aa28f 100644 --- a/.travis.yml +++ b/.travis.yml @@ -26,7 +26,7 @@ before_install: - sudo apt-get install -y sqlite3 install: - autoreconf -vfi -- ./configure --enable-sqlite3 --enable-aer --enable-non-standard --enable-arm --enable-mce --enable-extlog --enable-devlink --enable-diskerror --enable-memory-failure --enable-abrt-report --enable-hisi-ns-decode --enable-memory-ce-pfa +- ./configure --enable-all script: - make && sudo make install diff --git a/Makefile.am b/Makefile.am index d9b288b..fabca78 100644 --- a/Makefile.am +++ b/Makefile.am @@ -69,7 +69,7 @@ include_HEADERS = config.h ras-events.h ras-logger.h ras-mc-handler.h \ ras-aer-handler.h ras-mce-handler.h ras-record.h bitfield.h ras-report.h \ ras-extlog-handler.h ras-arm-handler.h ras-non-standard-handler.h \ ras-devlink-handler.h ras-diskerror-handler.h rbtree.h ras-page-isolation.h \ - non-standard-hisilicon.h non-standard-ampere.h non-standard-hisilicon.h + non-standard-hisilicon.h non-standard-ampere.h ras-memory-failure-handler.h # This rule can't be called with more than one Makefile job (like make -j8) # I can't figure out a way to fix that -- 2.50.1