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>
(cherry picked from commit 5d8d4fbbcb
)
Signed-off-by: Jeffery To <jeffery.to@gmail.com>
11 lines
526 B
Diff
11 lines
526 B
Diff
--- a/src/osdep/unix/flocklnx.c
|
|
+++ b/src/osdep/unix/flocklnx.c
|
|
@@ -57,7 +57,7 @@ int safe_flock (int fd,int op)
|
|
case ENOLCK: /* lock table is full */
|
|
sprintf (tmp,"File locking failure: %s",strerror (errno));
|
|
mm_log (tmp,WARN); /* give the user a warning of what happened */
|
|
- if (!logged++) syslog (LOG_ERR,tmp);
|
|
+ if (!logged++) syslog (LOG_ERR, "%s", tmp);
|
|
/* return failure if non-blocking lock */
|
|
if (op & LOCK_NB) return -1;
|
|
sleep (5); /* slow down in case it loops */
|