mirror of
https://codeberg.org/landley/toybox.git
synced 2026-01-26 06:07:55 +00:00
Update generated prereq files for commit e18fd827840a.
This commit is contained in:
parent
22efb79af9
commit
9ff43dbea8
@ -401,9 +401,9 @@
|
||||
#undef FLAG_L
|
||||
#endif
|
||||
|
||||
// xargs ^a:E:P#<0(null)=1optr(no-run-if-empty)n#<1(max-args)s#0[!0E] ^a:E:P#<0(null)=1optr(no-run-if-empty)n#<1(max-args)s#0[!0E]
|
||||
// xargs ^(process-slot-var):a:E:P#<0(null)=1optr(no-run-if-empty)n#<1(max-args)s#0[!0E] ^(process-slot-var):a:E:P#<0(null)=1optr(no-run-if-empty)n#<1(max-args)s#0[!0E]
|
||||
#undef OPTSTR_xargs
|
||||
#define OPTSTR_xargs "^a:E:P#<0(null)=1optr(no-run-if-empty)n#<1(max-args)s#0[!0E]"
|
||||
#define OPTSTR_xargs "^(process-slot-var):a:E:P#<0(null)=1optr(no-run-if-empty)n#<1(max-args)s#0[!0E]"
|
||||
#ifdef CLEANUP_xargs
|
||||
#undef CLEANUP_xargs
|
||||
#undef FOR_xargs
|
||||
@ -417,6 +417,7 @@
|
||||
#undef FLAG_P
|
||||
#undef FLAG_E
|
||||
#undef FLAG_a
|
||||
#undef FLAG_process_slot_var
|
||||
#endif
|
||||
|
||||
#ifdef FOR_basename
|
||||
@ -807,6 +808,7 @@
|
||||
#define FLAG_P (1LL<<7)
|
||||
#define FLAG_E (1LL<<8)
|
||||
#define FLAG_a (1LL<<9)
|
||||
#define FLAG_process_slot_var (1LL<<10)
|
||||
#endif
|
||||
|
||||
#undef OPTSTR_ascii
|
||||
|
||||
@ -126,11 +126,12 @@ struct wc_data {
|
||||
|
||||
struct xargs_data {
|
||||
long s, n, P;
|
||||
char *E, *a;
|
||||
char *E, *a, *process_slot_var;
|
||||
|
||||
long entries, bytes, np;
|
||||
char delim;
|
||||
FILE *tty;
|
||||
pid_t *pids;
|
||||
};
|
||||
extern union global_union {
|
||||
struct gzip_data gzip;
|
||||
|
||||
@ -61,7 +61,7 @@ USE_LSATTR(NEWTOY(lsattr, "ldapvR", TOYFLAG_BIN))
|
||||
USE_LSMOD(NEWTOY(lsmod, NULL, TOYFLAG_SBIN))
|
||||
USE_LSOF(NEWTOY(lsof, "lp*t", TOYFLAG_USR|TOYFLAG_BIN))
|
||||
USE_LSPCI(NEWTOY(lspci, "eDmkn@x@i:", TOYFLAG_USR|TOYFLAG_BIN))
|
||||
USE_LSUSB(NEWTOY(lsusb, "ti:", TOYFLAG_USR|TOYFLAG_BIN))
|
||||
USE_LSUSB(NEWTOY(lsusb, "vti:", TOYFLAG_USR|TOYFLAG_BIN))
|
||||
USE_MAKEDEVS(NEWTOY(makedevs, "<1>1d:", TOYFLAG_USR|TOYFLAG_BIN))
|
||||
USE_MDEV(NEWTOY(mdev, "s", TOYFLAG_USR|TOYFLAG_BIN|TOYFLAG_UMASK))
|
||||
USE_MKDIR(NEWTOY(mkdir, "<1"SKIP_TOYBOX_LSM_NONE("Z:")"vp(parent)(parents)m:", TOYFLAG_BIN|TOYFLAG_UMASK|TOYFLAG_MOREHELP(!CFG_TOYBOX_LSM_NONE)))
|
||||
@ -121,6 +121,6 @@ USE_WC(NEWTOY(wc, "Lcmwl", TOYFLAG_USR|TOYFLAG_BIN))
|
||||
USE_WGET(NEWTOY(wget, "<1>1(max-redirect)#<0=20d(debug)O(output-document):p(post-data):", TOYFLAG_USR|TOYFLAG_BIN|TOYFLAG_MOREHELP(CFG_WGET_LIBTLS|CFG_TOYBOX_LIBCRYPTO)))
|
||||
USE_WHICH(NEWTOY(which, "<1a", TOYFLAG_USR|TOYFLAG_BIN))
|
||||
USE_WHOAMI(OLDTOY(whoami, logname, TOYFLAG_USR|TOYFLAG_BIN))
|
||||
USE_XARGS(NEWTOY(xargs, "^a:E:P#<0(null)=1optr(no-run-if-empty)n#<1(max-args)s#0[!0E]", TOYFLAG_USR|TOYFLAG_BIN))
|
||||
USE_XARGS(NEWTOY(xargs, "^(process-slot-var):a:E:P#<0(null)=1optr(no-run-if-empty)n#<1(max-args)s#0[!0E]", TOYFLAG_USR|TOYFLAG_BIN))
|
||||
USE_XZCAT(NEWTOY(xzcat, NULL, TOYFLAG_USR|TOYFLAG_BIN))
|
||||
USE_ZCAT(NEWTOY(zcat, "cdfkt123456789[-123456789]", TOYFLAG_USR|TOYFLAG_BIN))
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user