diff mbox series

include/mk/env_pre.mk: remove dup makefile sourcing

Message ID 20220125024534.sdrsppor2n7s3pjb@xzhoux.usersys.redhat.com
State Superseded
Headers show
Series include/mk/env_pre.mk: remove dup makefile sourcing | expand

Commit Message

Murphy Zhou Jan. 25, 2022, 2:45 a.m. UTC
This will cause file not found errors.

Signed-off-by: Murphy Zhou <jencce2002@gmail.com>
---
 include/mk/env_pre.mk | 3 ---
 1 file changed, 3 deletions(-)

Comments

Cyril Hrubis Jan. 25, 2022, 11:05 a.m. UTC | #1
Hi!
> This will cause file not found errors.
> 
> Signed-off-by: Murphy Zhou <jencce2002@gmail.com>
> ---
>  include/mk/env_pre.mk | 3 ---
>  1 file changed, 3 deletions(-)
> 
> diff --git a/include/mk/env_pre.mk b/include/mk/env_pre.mk
> index f36215167..f913eb5fd 100644
> --- a/include/mk/env_pre.mk
> +++ b/include/mk/env_pre.mk
> @@ -88,9 +88,6 @@ endif
>  # autotools, *clean, and help don't require config.mk, features.mk, etc...
>  ifeq ($(filter autotools %clean .gitignore gitignore.% help,$(MAKECMDGOALS)),)
>  
> -include $(abs_top_builddir)/include/mk/config.mk
> -include $(abs_top_builddir)/include/mk/features.mk

NACK.

These files are generated by running configure script.
diff mbox series

Patch

diff --git a/include/mk/env_pre.mk b/include/mk/env_pre.mk
index f36215167..f913eb5fd 100644
--- a/include/mk/env_pre.mk
+++ b/include/mk/env_pre.mk
@@ -88,9 +88,6 @@  endif
 # autotools, *clean, and help don't require config.mk, features.mk, etc...
 ifeq ($(filter autotools %clean .gitignore gitignore.% help,$(MAKECMDGOALS)),)
 
-include $(abs_top_builddir)/include/mk/config.mk
-include $(abs_top_builddir)/include/mk/features.mk
-
 # START out-of-build-tree check.
 ifneq ($(abs_builddir),$(abs_srcdir))
 BUILD_TREE_STATE		:= $(BUILD_TREE_BUILDDIR_INSTALL)