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>
21 lines
635 B
Diff
21 lines
635 B
Diff
--- a/Makefile.in
|
|
+++ b/Makefile.in
|
|
@@ -149,7 +149,7 @@ sbindir = @sbindir@
|
|
sharedstatedir = @sharedstatedir@
|
|
sysconfdir = @sysconfdir@
|
|
target_alias = @target_alias@
|
|
-SUBDIRS = lib bc dc doc
|
|
+SUBDIRS = lib bc dc
|
|
MAINTAINERCLEANFILES = aclocal.m4 config.h.in configure Makefile.in \
|
|
stamp-h $(distdir).tar.gz h/number.h depcomp missing
|
|
|
|
--- a/Makefile.am
|
|
+++ b/Makefile.am
|
|
@@ -1,6 +1,6 @@
|
|
## Process this file with automake to produce Makefile.in
|
|
|
|
-SUBDIRS = lib bc dc doc
|
|
+SUBDIRS = lib bc dc
|
|
|
|
MAINTAINERCLEANFILES = aclocal.m4 config.h.in configure Makefile.in \
|
|
stamp-h $(distdir).tar.gz h/number.h depcomp missing
|