diff options
author | Ilya Lipnitskiy <ilya.lipnitskiy@gmail.com> | 2021-02-20 16:02:15 -0800 |
---|---|---|
committer | Ilya Lipnitskiy <ilya.lipnitskiy@gmail.com> | 2021-02-20 16:02:15 -0800 |
commit | 5d8d4fbbcb5c5de9370711c19bb3510210989a98 (patch) | |
tree | d0754921833f413b7eb93fb6bb1b1c8a22fb0498 /utils/attr | |
parent | d651082447b4392399a40ea1ae11d0bce4bfe83a (diff) |
treewide: Run refresh on all packages
The crude loop I wrote to come up with this changeset:
find -L package/feeds/packages/ -name patches | \
sed 's/patches$/refresh/' | sort | xargs make
Signed-off-by: Ilya Lipnitskiy <ilya.lipnitskiy@gmail.com>
Diffstat (limited to 'utils/attr')
4 files changed, 4 insertions, 19 deletions
diff --git a/utils/attr/patches/100-no-gettext_configure.patch b/utils/attr/patches/100-no-gettext_configure.patch index c1d5b5128..dea6f2ed9 100644 --- a/utils/attr/patches/100-no-gettext_configure.patch +++ b/utils/attr/patches/100-no-gettext_configure.patch @@ -1,8 +1,6 @@ -diff --git a/configure.ac b/configure.ac -index a5f9de5..4c77e97 100644 --- a/configure.ac +++ b/configure.ac -@@ -34,9 +34,6 @@ AC_FUNC_ALLOCA +@@ -34,9 +34,6 @@ AC_FUNC_GCC_VISIBILITY AM_PROG_AR LT_INIT diff --git a/utils/attr/patches/101-no-gettext_autogen.patch b/utils/attr/patches/101-no-gettext_autogen.patch index 1fad67a13..e9a8c8c3f 100644 --- a/utils/attr/patches/101-no-gettext_autogen.patch +++ b/utils/attr/patches/101-no-gettext_autogen.patch @@ -1,5 +1,3 @@ -diff --git a/autogen.sh b/autogen.sh -index a98a3c5..982aff1 100755 --- a/autogen.sh +++ b/autogen.sh @@ -1,4 +1,2 @@ diff --git a/utils/attr/patches/102-no-gettext_Makefile.patch b/utils/attr/patches/102-no-gettext_Makefile.patch index 76c8dcd3a..4d562b972 100644 --- a/utils/attr/patches/102-no-gettext_Makefile.patch +++ b/utils/attr/patches/102-no-gettext_Makefile.patch @@ -1,5 +1,3 @@ -diff --git a/Makefile.am b/Makefile.am -index a3e8353..381bb55 100644 --- a/Makefile.am +++ b/Makefile.am @@ -3,8 +3,6 @@ ACLOCAL_AMFLAGS = -I m4 diff --git a/utils/attr/patches/110-Replace-bzero-with-memset.patch b/utils/attr/patches/110-Replace-bzero-with-memset.patch index 4607451ec..cfae36a09 100644 --- a/utils/attr/patches/110-Replace-bzero-with-memset.patch +++ b/utils/attr/patches/110-Replace-bzero-with-memset.patch @@ -13,11 +13,9 @@ Signed-off-by: Rosen Penev <rosenp@gmail.com> tools/attr.c | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) -diff --git a/include/attributes.h b/include/attributes.h -index 14beb8f..039c817 100644 --- a/include/attributes.h +++ b/include/attributes.h -@@ -91,9 +91,9 @@ typedef struct attrlist_ent { /* data from attr_list() */ +@@ -91,9 +91,9 @@ typedef struct attrlist_ent { /* data fr * Implement a "cursor" for use in successive attr_list() calls. * It provides a way to find the last attribute that was returned in the * last attr_list() call so that we can get the next one without missing @@ -29,11 +27,9 @@ index 14beb8f..039c817 100644 */ typedef struct attrlist_cursor { uint32_t opaque[4]; /* an opaque cookie */ -diff --git a/libattr/libattr.c b/libattr/libattr.c -index d550e10..2ebd1c5 100644 --- a/libattr/libattr.c +++ b/libattr/libattr.c -@@ -298,7 +298,7 @@ attr_list(const char *path, char *buffer, const int buffersize, int flags, +@@ -298,7 +298,7 @@ attr_list(const char *path, char *buffer errno = EINVAL; return -1; } @@ -42,7 +38,7 @@ index d550e10..2ebd1c5 100644 if (flags & ATTR_DONTFOLLOW) length = llistxattr(path, lbuf, sizeof(lbuf)); -@@ -348,7 +348,7 @@ attr_listf(int fd, char *buffer, const int buffersize, int flags, +@@ -348,7 +348,7 @@ attr_listf(int fd, char *buffer, const i errno = EINVAL; return -1; } @@ -51,8 +47,6 @@ index d550e10..2ebd1c5 100644 length = flistxattr(fd, lbuf, sizeof(lbuf)); if (length < 0) -diff --git a/tools/attr.c b/tools/attr.c -index c8aa0b4..312aef1 100644 --- a/tools/attr.c +++ b/tools/attr.c @@ -228,7 +228,7 @@ main(int argc, char **argv) @@ -64,6 +58,3 @@ index c8aa0b4..312aef1 100644 do { error = attr_list(filename, buffer, BUFSIZE, attrflags, &cursor); --- -2.17.1 - |