M7350v1_en_gpl

This commit is contained in:
T
2024-09-09 08:52:07 +00:00
commit f9cc65cfda
65988 changed files with 26357421 additions and 0 deletions

View File

@ -0,0 +1,27 @@
$libdir isn't used by the Makefile at all apart from in this mkdir.
This will be used without any DESTDIR so if your libdir is a different
layout to the bulid system it will cause a failure. E.g:
Build system has /usr/lib only
libdir = /usr/lib64 for the target
Results in "mkdir: cannot create directory `/usr/lib64': Permission denied"
Since the directory is never used, we can just remove the mkdir.
Upstream-Status: Pending
RP 23/9/2011
Index: diffstat-1.54/makefile.in
===================================================================
--- diffstat-1.54.orig/makefile.in 2011-09-22 19:13:11.330158571 +0100
+++ diffstat-1.54/makefile.in 2011-09-22 19:13:35.610158363 +0100
@@ -79,7 +79,7 @@
$(INSTALL_DATA) $(srcdir)/$(THIS).1 $(man1dir)/$(THIS).$(manext)
installdirs :
- mkdir -p $(BINDIR) $(libdir) $(man1dir)
+ mkdir -p $(BINDIR) $(man1dir)
uninstall :
rm -f $(BINDIR)/$(PROG) $(man1dir)/$(THIS).$(manext)

View File

@ -0,0 +1,26 @@
SUMMARY = "Tool to produce a statistics based on a diff"
DESCRIPTION = "diffstat reads the output of diff and displays a histogram of \
the insertions, deletions, and modifications per-file. It is useful for \
reviewing large, complex patch files."
HOMEPAGE = "http://invisible-island.net/diffstat/"
SECTION = "devel"
LICENSE = "MIT"
LIC_FILES_CHKSUM = "file://install-sh;endline=42;md5=b3549726c1022bee09c174c72a0ca4a5"
PR = "r0"
SRC_URI = "ftp://invisible-island.net/diffstat/diffstat-${PV}.tgz \
file://dirfix.patch"
SRC_URI[md5sum] = "630d5278f1cd874dc3cc68cff3fddecf"
SRC_URI[sha256sum] = "59a46c75a99f2c373a81880051adc43a17b71c55478691e702c61c13c6d61b55"
S = "${WORKDIR}/diffstat-${PV}"
inherit autotools gettext
do_configure () {
if [ ! -e acinclude.m4 ]; then
mv aclocal.m4 acinclude.m4
fi
autotools_do_configure
}