diff options
author | Masahiro Yamada <yamada.masahiro@socionext.com> | 2019-08-21 16:02:04 +0900 |
---|---|---|
committer | Masahiro Yamada <yamada.masahiro@socionext.com> | 2019-08-25 07:42:00 +0900 |
commit | 000ec95fbe757401b5da1c9904840085204e5b3d (patch) | |
tree | 59f40ed5f0b292f663d52c3a9394d199b6fd70ae /scripts | |
parent | 6a4f6a26d32abb5d5f61861ab3cf5880d9556ff5 (diff) | |
download | linux-stable-000ec95fbe757401b5da1c9904840085204e5b3d.tar.gz linux-stable-000ec95fbe757401b5da1c9904840085204e5b3d.tar.bz2 linux-stable-000ec95fbe757401b5da1c9904840085204e5b3d.zip |
kbuild: pkg: rename scripts/package/Makefile to scripts/Makefile.package
scripts/package/Makefile does not use $(obj) or $(src) at all.
It actually generates files and directories in the top of $(objtree).
I do not see much sense in descending into scripts/package/.
Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/Makefile.package (renamed from scripts/package/Makefile) | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/scripts/package/Makefile b/scripts/Makefile.package index 407189d9942a..56eadcc48d46 100644 --- a/scripts/package/Makefile +++ b/scripts/Makefile.package @@ -1,6 +1,7 @@ # SPDX-License-Identifier: GPL-2.0-only # Makefile for the different targets used to generate full packages of a kernel -# It uses the generic clean infrastructure of kbuild + +include $(srctree)/scripts/Kbuild.include # RPM target # --------------------------------------------------------------------------- @@ -154,3 +155,5 @@ help: @echo ' perf-targz-src-pkg - Build $(perf-tar).tar.gz source tarball' @echo ' perf-tarbz2-src-pkg - Build $(perf-tar).tar.bz2 source tarball' @echo ' perf-tarxz-src-pkg - Build $(perf-tar).tar.xz source tarball' + +.PHONY: $(PHONY) |