mirror of
git://git.openwrt.org/openwrt/openwrt.git
synced 2024-12-26 16:42:47 +00:00
tools: Improve diffability/maintainability
There's no purpose to squish multiple tools into a single line (and spread those out over multiple lines). It might look 'nice' in certain conditions, but it's annoying to maintain. For example, but not limited to: * adding/removing tools, causes hard to read diffs * Duplicates are harder to spot * Sorting can not be (easily?) automated With this proposed change, the above annoyances go away. Inserting a new tool can be done with a single line-change-diff, sorting can be done by any editor (in vi, select, :sort for example) and dupes are much easier to spot. Signed-off-by: Olliver Schinagl <oliver@schinagl.nl>
This commit is contained in:
parent
b2bfea481e
commit
ae614fb397
@ -21,11 +21,43 @@ ifneq ($(CONFIG_SDK)$(CONFIG_PACKAGE_kmod-b43)$(CONFIG_BRCMSMAC_USE_FW_FROM_WL),
|
|||||||
BUILD_B43_TOOLS = y
|
BUILD_B43_TOOLS = y
|
||||||
endif
|
endif
|
||||||
|
|
||||||
tools-y += autoconf autoconf-archive automake bc bison cmake cpio dosfstools
|
tools-y += autoconf
|
||||||
tools-y += e2fsprogs expat fakeroot findutils firmware-utils flex gengetopt
|
tools-y += autoconf-archive
|
||||||
tools-y += libressl libtool lzma m4 make-ext4fs meson missing-macros mkimage
|
tools-y += automake
|
||||||
tools-y += mklibs mtd-utils mtools ninja padjffs2 patch-image
|
tools-y += bc
|
||||||
tools-y += patchelf pkgconf quilt squashfskit4 sstrip zip zlib zstd
|
tools-y += bison
|
||||||
|
tools-y += cmake
|
||||||
|
tools-y += cpio
|
||||||
|
tools-y += dosfstools
|
||||||
|
tools-y += e2fsprogs
|
||||||
|
tools-y += expat
|
||||||
|
tools-y += fakeroot
|
||||||
|
tools-y += findutils
|
||||||
|
tools-y += firmware-utils
|
||||||
|
tools-y += flex
|
||||||
|
tools-y += gengetopt
|
||||||
|
tools-y += libressl
|
||||||
|
tools-y += libtool
|
||||||
|
tools-y += lzma
|
||||||
|
tools-y += m4
|
||||||
|
tools-y += make-ext4fs
|
||||||
|
tools-y += meson
|
||||||
|
tools-y += missing-macros
|
||||||
|
tools-y += mkimage
|
||||||
|
tools-y += mklibs
|
||||||
|
tools-y += mtd-utils
|
||||||
|
tools-y += mtools
|
||||||
|
tools-y += ninja
|
||||||
|
tools-y += padjffs2
|
||||||
|
tools-y += patch-image
|
||||||
|
tools-y += patchelf
|
||||||
|
tools-y += pkgconf
|
||||||
|
tools-y += quilt
|
||||||
|
tools-y += squashfskit4
|
||||||
|
tools-y += sstrip
|
||||||
|
tools-y += zip
|
||||||
|
tools-y += zlib
|
||||||
|
tools-y += zstd
|
||||||
tools-$(if $(CONFIG_BUILD_ALL_HOST_TOOLS)$(BUILD_B43_TOOLS),y) += b43-tools
|
tools-$(if $(CONFIG_BUILD_ALL_HOST_TOOLS)$(BUILD_B43_TOOLS),y) += b43-tools
|
||||||
tools-$(if $(CONFIG_BUILD_ALL_HOST_TOOLS)$(BUILD_ISL),y) += isl
|
tools-$(if $(CONFIG_BUILD_ALL_HOST_TOOLS)$(BUILD_ISL),y) += isl
|
||||||
tools-$(if $(CONFIG_BUILD_ALL_HOST_TOOLS)$(BUILD_TOOLCHAIN),y) += gmp mpc mpfr
|
tools-$(if $(CONFIG_BUILD_ALL_HOST_TOOLS)$(BUILD_TOOLCHAIN),y) += gmp mpc mpfr
|
||||||
|
Loading…
Reference in New Issue
Block a user