From 7e15375d824a3e1e21e9df2d631aef57aa4bcdd4 Mon Sep 17 00:00:00 2001 From: Roy Ivy III Date: Sun, 26 Jan 2020 20:22:58 -0600 Subject: [PATCH] refactor ~ clean up main directory (move '{mk,uu}main.rs' into src/#common) --- mkmain.rs => src/#common/mkmain.rs | 0 uumain.rs => src/#common/uumain.rs | 0 src/arch/Cargo.toml | 4 ++-- src/base32/Cargo.toml | 4 ++-- src/base64/Cargo.toml | 4 ++-- src/basename/Cargo.toml | 4 ++-- src/cat/Cargo.toml | 4 ++-- src/chgrp/Cargo.toml | 4 ++-- src/chmod/Cargo.toml | 4 ++-- src/chown/Cargo.toml | 4 ++-- src/chroot/Cargo.toml | 4 ++-- src/cksum/Cargo.toml | 2 +- src/cksum/build.rs | 2 +- src/comm/Cargo.toml | 4 ++-- src/cp/Cargo.toml | 4 ++-- src/cut/Cargo.toml | 4 ++-- src/date/Cargo.toml | 4 ++-- src/dircolors/Cargo.toml | 4 ++-- src/dirname/Cargo.toml | 4 ++-- src/du/Cargo.toml | 4 ++-- src/echo/Cargo.toml | 4 ++-- src/env/Cargo.toml | 4 ++-- src/expand/Cargo.toml | 4 ++-- src/expr/Cargo.toml | 4 ++-- src/factor/Cargo.toml | 2 +- src/factor/build.rs | 2 +- src/false/Cargo.toml | 4 ++-- src/fmt/Cargo.toml | 4 ++-- src/fold/Cargo.toml | 4 ++-- src/groups/Cargo.toml | 4 ++-- src/hashsum/Cargo.toml | 4 ++-- src/head/Cargo.toml | 4 ++-- src/hostid/Cargo.toml | 4 ++-- src/hostname/Cargo.toml | 4 ++-- src/id/Cargo.toml | 4 ++-- src/install/Cargo.toml | 4 ++-- src/join/Cargo.toml | 4 ++-- src/kill/Cargo.toml | 4 ++-- src/link/Cargo.toml | 4 ++-- src/ln/Cargo.toml | 4 ++-- src/logname/Cargo.toml | 4 ++-- src/ls/Cargo.toml | 4 ++-- src/mkdir/Cargo.toml | 4 ++-- src/mkfifo/Cargo.toml | 4 ++-- src/mknod/Cargo.toml | 4 ++-- src/mktemp/Cargo.toml | 4 ++-- src/more/Cargo.toml | 4 ++-- src/mv/Cargo.toml | 4 ++-- src/nice/Cargo.toml | 4 ++-- src/nl/Cargo.toml | 4 ++-- src/nohup/Cargo.toml | 4 ++-- src/nproc/Cargo.toml | 4 ++-- src/numfmt/Cargo.toml | 4 ++-- src/od/Cargo.toml | 4 ++-- src/paste/Cargo.toml | 4 ++-- src/pathchk/Cargo.toml | 4 ++-- src/pinky/Cargo.toml | 4 ++-- src/printenv/Cargo.toml | 4 ++-- src/printf/Cargo.toml | 4 ++-- src/ptx/Cargo.toml | 4 ++-- src/pwd/Cargo.toml | 4 ++-- src/readlink/Cargo.toml | 4 ++-- src/realpath/Cargo.toml | 4 ++-- src/relpath/Cargo.toml | 4 ++-- src/rm/Cargo.toml | 4 ++-- src/rmdir/Cargo.toml | 4 ++-- src/seq/Cargo.toml | 4 ++-- src/shred/Cargo.toml | 4 ++-- src/shuf/Cargo.toml | 4 ++-- src/sleep/Cargo.toml | 4 ++-- src/sort/Cargo.toml | 4 ++-- src/split/Cargo.toml | 4 ++-- src/stat/Cargo.toml | 4 ++-- src/stdbuf/Cargo.toml | 2 +- src/stdbuf/build.rs | 2 +- src/sum/Cargo.toml | 4 ++-- src/sync/Cargo.toml | 4 ++-- src/tac/Cargo.toml | 4 ++-- src/tail/Cargo.toml | 4 ++-- src/tee/Cargo.toml | 4 ++-- src/test/Cargo.toml | 4 ++-- src/timeout/Cargo.toml | 4 ++-- src/touch/Cargo.toml | 4 ++-- src/tr/Cargo.toml | 4 ++-- src/true/Cargo.toml | 4 ++-- src/truncate/Cargo.toml | 4 ++-- src/tsort/Cargo.toml | 4 ++-- src/tty/Cargo.toml | 4 ++-- src/uname/Cargo.toml | 4 ++-- src/unexpand/Cargo.toml | 4 ++-- src/uniq/Cargo.toml | 4 ++-- src/unlink/Cargo.toml | 4 ++-- src/uptime/Cargo.toml | 4 ++-- src/users/Cargo.toml | 4 ++-- src/wc/Cargo.toml | 4 ++-- src/who/Cargo.toml | 4 ++-- src/whoami/Cargo.toml | 4 ++-- src/yes/Cargo.toml | 4 ++-- 98 files changed, 186 insertions(+), 186 deletions(-) rename mkmain.rs => src/#common/mkmain.rs (100%) rename uumain.rs => src/#common/uumain.rs (100%) diff --git a/mkmain.rs b/src/#common/mkmain.rs similarity index 100% rename from mkmain.rs rename to src/#common/mkmain.rs diff --git a/uumain.rs b/src/#common/uumain.rs similarity index 100% rename from uumain.rs rename to src/#common/uumain.rs diff --git a/src/arch/Cargo.toml b/src/arch/Cargo.toml index d009a09c4..71c6deba7 100644 --- a/src/arch/Cargo.toml +++ b/src/arch/Cargo.toml @@ -2,7 +2,7 @@ name = "arch" version = "0.0.1" authors = [] -build = "../../mkmain.rs" +build = "../#common/mkmain.rs" [lib] name = "uu_arch" @@ -14,4 +14,4 @@ uucore = "0.0.1" [[bin]] name = "arch" -path = "../../uumain.rs" +path = "../#common/uumain.rs" diff --git a/src/base32/Cargo.toml b/src/base32/Cargo.toml index 75b25454b..60f263c83 100644 --- a/src/base32/Cargo.toml +++ b/src/base32/Cargo.toml @@ -2,7 +2,7 @@ name = "base32" version = "0.0.1" authors = [] -build = "../../mkmain.rs" +build = "../#common/mkmain.rs" [lib] name = "uu_base32" @@ -18,4 +18,4 @@ optional = true [[bin]] name = "base32" -path = "../../uumain.rs" +path = "../#common/uumain.rs" diff --git a/src/base64/Cargo.toml b/src/base64/Cargo.toml index 63b82b4ec..d959808a0 100644 --- a/src/base64/Cargo.toml +++ b/src/base64/Cargo.toml @@ -2,7 +2,7 @@ name = "base64" version = "0.0.1" authors = [] -build = "../../mkmain.rs" +build = "../#common/mkmain.rs" [lib] name = "uu_base64" @@ -14,4 +14,4 @@ features = ["encoding"] [[bin]] name = "base64" -path = "../../uumain.rs" +path = "../#common/uumain.rs" diff --git a/src/basename/Cargo.toml b/src/basename/Cargo.toml index 1e3cb7adc..554f53f74 100644 --- a/src/basename/Cargo.toml +++ b/src/basename/Cargo.toml @@ -2,7 +2,7 @@ name = "basename" version = "0.0.1" authors = [] -build = "../../mkmain.rs" +build = "../#common/mkmain.rs" [lib] name = "uu_basename" @@ -13,4 +13,4 @@ uucore = "0.0.1" [[bin]] name = "basename" -path = "../../uumain.rs" +path = "../#common/uumain.rs" diff --git a/src/cat/Cargo.toml b/src/cat/Cargo.toml index 635f9e9d8..93540431a 100644 --- a/src/cat/Cargo.toml +++ b/src/cat/Cargo.toml @@ -2,7 +2,7 @@ name = "cat" version = "0.0.1" authors = [] -build = "../../mkmain.rs" +build = "../#common/mkmain.rs" [lib] name = "uu_cat" @@ -20,4 +20,4 @@ unix_socket = "0.5.0" [[bin]] name = "cat" -path = "../../uumain.rs" +path = "../#common/uumain.rs" diff --git a/src/chgrp/Cargo.toml b/src/chgrp/Cargo.toml index caea10ccf..317053bf5 100644 --- a/src/chgrp/Cargo.toml +++ b/src/chgrp/Cargo.toml @@ -2,7 +2,7 @@ name = "chgrp" version = "0.0.1" authors = [] -build = "../../mkmain.rs" +build = "../#common/mkmain.rs" [lib] name = "uu_chgrp" @@ -17,4 +17,4 @@ features = ["entries", "fs"] [[bin]] name = "chgrp" -path = "../../uumain.rs" +path = "../#common/uumain.rs" diff --git a/src/chmod/Cargo.toml b/src/chmod/Cargo.toml index 0df9d54a8..37f9d6c5a 100644 --- a/src/chmod/Cargo.toml +++ b/src/chmod/Cargo.toml @@ -2,7 +2,7 @@ name = "chmod" version = "0.0.1" authors = [] -build = "../../mkmain.rs" +build = "../#common/mkmain.rs" [lib] name = "uu_chmod" @@ -18,4 +18,4 @@ features = ["mode"] [[bin]] name = "chmod" -path = "../../uumain.rs" +path = "../#common/uumain.rs" diff --git a/src/chown/Cargo.toml b/src/chown/Cargo.toml index 1e6ec9e36..05b385594 100644 --- a/src/chown/Cargo.toml +++ b/src/chown/Cargo.toml @@ -2,7 +2,7 @@ name = "chown" version = "0.0.1" authors = [] -build = "../../mkmain.rs" +build = "../#common/mkmain.rs" [lib] name = "uu_chown" @@ -22,4 +22,4 @@ optional = true [[bin]] name = "chown" -path = "../../uumain.rs" +path = "../#common/uumain.rs" diff --git a/src/chroot/Cargo.toml b/src/chroot/Cargo.toml index 6fd893277..dd2b4bcc8 100644 --- a/src/chroot/Cargo.toml +++ b/src/chroot/Cargo.toml @@ -2,7 +2,7 @@ name = "chroot" version = "0.0.1" authors = [] -build = "../../mkmain.rs" +build = "../#common/mkmain.rs" [lib] name = "uu_chroot" @@ -17,4 +17,4 @@ features = ["entries"] [[bin]] name = "chroot" -path = "../../uumain.rs" +path = "../#common/uumain.rs" diff --git a/src/cksum/Cargo.toml b/src/cksum/Cargo.toml index f608e4396..a97c18bf0 100644 --- a/src/cksum/Cargo.toml +++ b/src/cksum/Cargo.toml @@ -13,4 +13,4 @@ uucore = "0.0.1" [[bin]] name = "cksum" -path = "../../uumain.rs" +path = "../#common/uumain.rs" diff --git a/src/cksum/build.rs b/src/cksum/build.rs index e4f883b7f..e918a7442 100644 --- a/src/cksum/build.rs +++ b/src/cksum/build.rs @@ -15,7 +15,7 @@ use std::path::Path; const CRC_TABLE_LEN: usize = 256; -#[path = "../../mkmain.rs"] +#[path = "../#common/mkmain.rs"] mod mkmain; fn main() { diff --git a/src/comm/Cargo.toml b/src/comm/Cargo.toml index 6ddb78f3e..f01b82aa9 100644 --- a/src/comm/Cargo.toml +++ b/src/comm/Cargo.toml @@ -2,7 +2,7 @@ name = "comm" version = "0.0.1" authors = [] -build = "../../mkmain.rs" +build = "../#common/mkmain.rs" [lib] name = "uu_comm" @@ -15,4 +15,4 @@ uucore = "0.0.1" [[bin]] name = "comm" -path = "../../uumain.rs" +path = "../#common/uumain.rs" diff --git a/src/cp/Cargo.toml b/src/cp/Cargo.toml index 7ba7023fd..b513ce244 100644 --- a/src/cp/Cargo.toml +++ b/src/cp/Cargo.toml @@ -5,7 +5,7 @@ authors = [ "Jordy Dickinson ", "Joshua S. Miller ", ] -build = "../../mkmain.rs" +build = "../#common/mkmain.rs" [lib] name = "uu_cp" @@ -35,4 +35,4 @@ xattr="0.2.1" [[bin]] name = "cp" -path = "../../uumain.rs" +path = "../#common/uumain.rs" diff --git a/src/cut/Cargo.toml b/src/cut/Cargo.toml index 97d4ade2b..f0fec8744 100644 --- a/src/cut/Cargo.toml +++ b/src/cut/Cargo.toml @@ -2,7 +2,7 @@ name = "cut" version = "0.0.1" authors = [] -build = "../../mkmain.rs" +build = "../#common/mkmain.rs" [lib] name = "uu_cut" @@ -13,4 +13,4 @@ uucore = "0.0.1" [[bin]] name = "cut" -path = "../../uumain.rs" +path = "../#common/uumain.rs" diff --git a/src/date/Cargo.toml b/src/date/Cargo.toml index 29b66ded3..536052236 100644 --- a/src/date/Cargo.toml +++ b/src/date/Cargo.toml @@ -2,7 +2,7 @@ name = "date" version = "0.0.1" authors = [] -build = "../../mkmain.rs" +build = "../#common/mkmain.rs" [lib] name = "uu_date" @@ -15,4 +15,4 @@ uucore = "0.0.1" [[bin]] name = "date" -path = "../../uumain.rs" +path = "../#common/uumain.rs" diff --git a/src/dircolors/Cargo.toml b/src/dircolors/Cargo.toml index f80e8c941..ee7a58705 100644 --- a/src/dircolors/Cargo.toml +++ b/src/dircolors/Cargo.toml @@ -2,7 +2,7 @@ name = "dircolors" version = "0.0.1" authors = [] -build = "../../mkmain.rs" +build = "../#common/mkmain.rs" [lib] name = "uu_dircolors" @@ -14,4 +14,4 @@ uucore = "0.0.1" [[bin]] name = "dircolors" -path = "../../uumain.rs" +path = "../#common/uumain.rs" diff --git a/src/dirname/Cargo.toml b/src/dirname/Cargo.toml index 746757b48..5910b8d7e 100644 --- a/src/dirname/Cargo.toml +++ b/src/dirname/Cargo.toml @@ -2,7 +2,7 @@ name = "dirname" version = "0.0.1" authors = [] -build = "../../mkmain.rs" +build = "../#common/mkmain.rs" [lib] name = "uu_dirname" @@ -14,4 +14,4 @@ uucore = "0.0.1" [[bin]] name = "dirname" -path = "../../uumain.rs" +path = "../#common/uumain.rs" diff --git a/src/du/Cargo.toml b/src/du/Cargo.toml index 8bbbfc869..a83bfe7a1 100644 --- a/src/du/Cargo.toml +++ b/src/du/Cargo.toml @@ -2,7 +2,7 @@ name = "du" version = "0.0.1" authors = [] -build = "../../mkmain.rs" +build = "../#common/mkmain.rs" [lib] name = "uu_du" @@ -14,4 +14,4 @@ uucore = "0.0.1" [[bin]] name = "du" -path = "../../uumain.rs" +path = "../#common/uumain.rs" diff --git a/src/echo/Cargo.toml b/src/echo/Cargo.toml index 2c63c3427..5561643c7 100644 --- a/src/echo/Cargo.toml +++ b/src/echo/Cargo.toml @@ -2,7 +2,7 @@ name = "echo" version = "0.0.1" authors = [] -build = "../../mkmain.rs" +build = "../#common/mkmain.rs" [lib] name = "uu_echo" @@ -13,4 +13,4 @@ uucore = "0.0.1" [[bin]] name = "echo" -path = "../../uumain.rs" +path = "../#common/uumain.rs" diff --git a/src/env/Cargo.toml b/src/env/Cargo.toml index 5f8527b24..96d2b5a35 100644 --- a/src/env/Cargo.toml +++ b/src/env/Cargo.toml @@ -3,7 +3,7 @@ name = "env" version = "0.0.1" authors = ["uutils developers"] description = "Set each NAME to VALUE in the environment and run COMMAND" -build = "../../mkmain.rs" +build = "../#common/mkmain.rs" edition = "2018" [lib] @@ -18,4 +18,4 @@ rust-ini = "0.13.0" [[bin]] name = "env" -path = "../../uumain.rs" +path = "../#common/uumain.rs" diff --git a/src/expand/Cargo.toml b/src/expand/Cargo.toml index ba8f38c59..3e7f7eb57 100644 --- a/src/expand/Cargo.toml +++ b/src/expand/Cargo.toml @@ -2,7 +2,7 @@ name = "expand" version = "0.0.1" authors = [] -build = "../../mkmain.rs" +build = "../#common/mkmain.rs" [lib] name = "uu_expand" @@ -15,4 +15,4 @@ uucore = "0.0.1" [[bin]] name = "expand" -path = "../../uumain.rs" +path = "../#common/uumain.rs" diff --git a/src/expr/Cargo.toml b/src/expr/Cargo.toml index 36529665f..70e803883 100644 --- a/src/expr/Cargo.toml +++ b/src/expr/Cargo.toml @@ -2,7 +2,7 @@ name = "expr" version = "0.0.1" authors = [] -build = "../../mkmain.rs" +build = "../#common/mkmain.rs" [lib] name = "uu_expr" @@ -15,4 +15,4 @@ uucore = "0.0.1" [[bin]] name = "expr" -path = "../../uumain.rs" +path = "../#common/uumain.rs" diff --git a/src/factor/Cargo.toml b/src/factor/Cargo.toml index e7ba407b5..a8d82efed 100644 --- a/src/factor/Cargo.toml +++ b/src/factor/Cargo.toml @@ -13,4 +13,4 @@ uucore = "0.0.1" [[bin]] name = "factor" -path = "../../uumain.rs" +path = "../#common/uumain.rs" diff --git a/src/factor/build.rs b/src/factor/build.rs index 914400034..42845ecb7 100644 --- a/src/factor/build.rs +++ b/src/factor/build.rs @@ -33,7 +33,7 @@ mod numeric; mod sieve; -#[path = "../../mkmain.rs"] +#[path = "../#common/mkmain.rs"] mod mkmain; // extended Euclid algorithm diff --git a/src/false/Cargo.toml b/src/false/Cargo.toml index 9ae600840..6dd28707c 100644 --- a/src/false/Cargo.toml +++ b/src/false/Cargo.toml @@ -2,7 +2,7 @@ name = "false" version = "0.0.1" authors = [] -build = "../../mkmain.rs" +build = "../#common/mkmain.rs" [lib] name = "uu_false" @@ -13,4 +13,4 @@ uucore = "0.0.1" [[bin]] name = "false" -path = "../../uumain.rs" +path = "../#common/uumain.rs" diff --git a/src/fmt/Cargo.toml b/src/fmt/Cargo.toml index ce50a9029..d5305d1fd 100644 --- a/src/fmt/Cargo.toml +++ b/src/fmt/Cargo.toml @@ -2,7 +2,7 @@ name = "fmt" version = "0.0.1" authors = [] -build = "../../mkmain.rs" +build = "../#common/mkmain.rs" [lib] name = "uu_fmt" @@ -15,4 +15,4 @@ uucore = "0.0.1" [[bin]] name = "fmt" -path = "../../uumain.rs" +path = "../#common/uumain.rs" diff --git a/src/fold/Cargo.toml b/src/fold/Cargo.toml index fb004cc16..a00755e2a 100644 --- a/src/fold/Cargo.toml +++ b/src/fold/Cargo.toml @@ -2,7 +2,7 @@ name = "fold" version = "0.0.1" authors = [] -build = "../../mkmain.rs" +build = "../#common/mkmain.rs" [lib] name = "uu_fold" @@ -13,4 +13,4 @@ uucore = "0.0.1" [[bin]] name = "fold" -path = "../../uumain.rs" +path = "../#common/uumain.rs" diff --git a/src/groups/Cargo.toml b/src/groups/Cargo.toml index 3bef6484e..bf2acd8bc 100644 --- a/src/groups/Cargo.toml +++ b/src/groups/Cargo.toml @@ -2,7 +2,7 @@ name = "groups" version = "0.0.1" authors = [] -build = "../../mkmain.rs" +build = "../#common/mkmain.rs" [lib] name = "uu_groups" @@ -14,4 +14,4 @@ features = ["entries"] [[bin]] name = "groups" -path = "../../uumain.rs" +path = "../#common/uumain.rs" diff --git a/src/hashsum/Cargo.toml b/src/hashsum/Cargo.toml index 7b9662435..857fbf0a5 100644 --- a/src/hashsum/Cargo.toml +++ b/src/hashsum/Cargo.toml @@ -2,7 +2,7 @@ name = "hashsum" version = "0.0.1" authors = [] -build = "../../mkmain.rs" +build = "../#common/mkmain.rs" [lib] name = "uu_hashsum" @@ -23,4 +23,4 @@ uucore = "0.0.1" [[bin]] name = "hashsum" -path = "../../uumain.rs" +path = "../#common/uumain.rs" diff --git a/src/head/Cargo.toml b/src/head/Cargo.toml index 75d604608..63f1a6df0 100644 --- a/src/head/Cargo.toml +++ b/src/head/Cargo.toml @@ -2,7 +2,7 @@ name = "head" version = "0.0.1" authors = [] -build = "../../mkmain.rs" +build = "../#common/mkmain.rs" [lib] name = "uu_head" @@ -14,4 +14,4 @@ uucore = "0.0.1" [[bin]] name = "head" -path = "../../uumain.rs" +path = "../#common/uumain.rs" diff --git a/src/hostid/Cargo.toml b/src/hostid/Cargo.toml index 8414c740b..7fe771a94 100644 --- a/src/hostid/Cargo.toml +++ b/src/hostid/Cargo.toml @@ -2,7 +2,7 @@ name = "hostid" version = "0.0.1" authors = [] -build = "../../mkmain.rs" +build = "../#common/mkmain.rs" [lib] name = "uu_hostid" @@ -14,4 +14,4 @@ uucore = "0.0.1" [[bin]] name = "hostid" -path = "../../uumain.rs" +path = "../#common/uumain.rs" diff --git a/src/hostname/Cargo.toml b/src/hostname/Cargo.toml index 7b1497245..a667dbea4 100644 --- a/src/hostname/Cargo.toml +++ b/src/hostname/Cargo.toml @@ -2,7 +2,7 @@ name = "hostname" version = "0.0.1" authors = [] -build = "../../mkmain.rs" +build = "../#common/mkmain.rs" [lib] name = "uu_hostname" @@ -16,4 +16,4 @@ uucore = "0.0.1" [[bin]] name = "hostname" -path = "../../uumain.rs" +path = "../#common/uumain.rs" diff --git a/src/id/Cargo.toml b/src/id/Cargo.toml index f9aef3e30..5a50a7382 100644 --- a/src/id/Cargo.toml +++ b/src/id/Cargo.toml @@ -2,7 +2,7 @@ name = "id" version = "0.0.1" authors = [] -build = "../../mkmain.rs" +build = "../#common/mkmain.rs" [lib] name = "uu_id" @@ -14,4 +14,4 @@ features = ["entries", "process"] [[bin]] name = "id" -path = "../../uumain.rs" +path = "../#common/uumain.rs" diff --git a/src/install/Cargo.toml b/src/install/Cargo.toml index d2f8caac0..0b34187c4 100644 --- a/src/install/Cargo.toml +++ b/src/install/Cargo.toml @@ -2,7 +2,7 @@ name = "install" version = "0.0.1" authors = ["Ben Eills "] -build = "../../mkmain.rs" +build = "../#common/mkmain.rs" [lib] name = "uu_install" @@ -18,4 +18,4 @@ time = "0.1.40" [[bin]] name = "install" -path = "../../uumain.rs" +path = "../#common/uumain.rs" diff --git a/src/join/Cargo.toml b/src/join/Cargo.toml index 01980d092..411344754 100644 --- a/src/join/Cargo.toml +++ b/src/join/Cargo.toml @@ -2,7 +2,7 @@ name = "join" version = "0.0.1" authors = [] -build = "../../mkmain.rs" +build = "../#common/mkmain.rs" [lib] name = "uu_join" @@ -14,4 +14,4 @@ uucore = "0.0.1" [[bin]] name = "join" -path = "../../uumain.rs" +path = "../#common/uumain.rs" diff --git a/src/kill/Cargo.toml b/src/kill/Cargo.toml index 1b1ebda7b..ea50e7945 100644 --- a/src/kill/Cargo.toml +++ b/src/kill/Cargo.toml @@ -2,7 +2,7 @@ name = "kill" version = "0.0.1" authors = [] -build = "../../mkmain.rs" +build = "../#common/mkmain.rs" [lib] name = "uu_kill" @@ -17,4 +17,4 @@ features = ["signals"] [[bin]] name = "kill" -path = "../../uumain.rs" +path = "../#common/uumain.rs" diff --git a/src/link/Cargo.toml b/src/link/Cargo.toml index ff523cfdc..6150710e2 100644 --- a/src/link/Cargo.toml +++ b/src/link/Cargo.toml @@ -2,7 +2,7 @@ name = "link" version = "0.0.1" authors = [] -build = "../../mkmain.rs" +build = "../#common/mkmain.rs" [lib] name = "uu_link" @@ -14,4 +14,4 @@ uucore = "0.0.1" [[bin]] name = "link" -path = "../../uumain.rs" +path = "../#common/uumain.rs" diff --git a/src/ln/Cargo.toml b/src/ln/Cargo.toml index c9fe57a13..59de43011 100644 --- a/src/ln/Cargo.toml +++ b/src/ln/Cargo.toml @@ -2,7 +2,7 @@ name = "ln" version = "0.0.1" authors = [] -build = "../../mkmain.rs" +build = "../#common/mkmain.rs" [lib] name = "uu_ln" @@ -14,4 +14,4 @@ uucore = "0.0.1" [[bin]] name = "ln" -path = "../../uumain.rs" +path = "../#common/uumain.rs" diff --git a/src/logname/Cargo.toml b/src/logname/Cargo.toml index f81e10fa3..35fe1ab37 100644 --- a/src/logname/Cargo.toml +++ b/src/logname/Cargo.toml @@ -2,7 +2,7 @@ name = "logname" version = "0.0.1" authors = [] -build = "../../mkmain.rs" +build = "../#common/mkmain.rs" [lib] name = "uu_logname" @@ -14,4 +14,4 @@ uucore = "0.0.1" [[bin]] name = "logname" -path = "../../uumain.rs" +path = "../#common/uumain.rs" diff --git a/src/ls/Cargo.toml b/src/ls/Cargo.toml index 37bb85a83..b7b447be5 100644 --- a/src/ls/Cargo.toml +++ b/src/ls/Cargo.toml @@ -2,7 +2,7 @@ name = "ls" version = "0.0.1" authors = ["Jeremiah Peschka "] -build = "../../mkmain.rs" +build = "../#common/mkmain.rs" [lib] name = "uu_ls" @@ -24,4 +24,4 @@ features = ["entries", "fs"] [[bin]] name = "ls" -path = "../../uumain.rs" +path = "../#common/uumain.rs" diff --git a/src/mkdir/Cargo.toml b/src/mkdir/Cargo.toml index 9bbabbe43..481cbec03 100644 --- a/src/mkdir/Cargo.toml +++ b/src/mkdir/Cargo.toml @@ -2,7 +2,7 @@ name = "mkdir" version = "0.0.1" authors = [] -build = "../../mkmain.rs" +build = "../#common/mkmain.rs" [lib] name = "uu_mkdir" @@ -15,4 +15,4 @@ uucore = "0.0.1" [[bin]] name = "mkdir" -path = "../../uumain.rs" +path = "../#common/uumain.rs" diff --git a/src/mkfifo/Cargo.toml b/src/mkfifo/Cargo.toml index 555799cf6..5cc02448c 100644 --- a/src/mkfifo/Cargo.toml +++ b/src/mkfifo/Cargo.toml @@ -2,7 +2,7 @@ name = "mkfifo" version = "0.0.1" authors = [] -build = "../../mkmain.rs" +build = "../#common/mkmain.rs" [lib] name = "uu_mkfifo" @@ -15,4 +15,4 @@ uucore = "0.0.1" [[bin]] name = "mkfifo" -path = "../../uumain.rs" +path = "../#common/uumain.rs" diff --git a/src/mknod/Cargo.toml b/src/mknod/Cargo.toml index 5d45c7621..b3b5cd525 100644 --- a/src/mknod/Cargo.toml +++ b/src/mknod/Cargo.toml @@ -2,7 +2,7 @@ name = "mknod" version = "0.0.1" authors = [] -build = "../../mkmain.rs" +build = "../#common/mkmain.rs" [lib] name = "uu_mknod" @@ -15,4 +15,4 @@ uucore = "0.0.1" [[bin]] name = "mknod" -path = "../../uumain.rs" +path = "../#common/uumain.rs" diff --git a/src/mktemp/Cargo.toml b/src/mktemp/Cargo.toml index f2b98733b..e79247837 100644 --- a/src/mktemp/Cargo.toml +++ b/src/mktemp/Cargo.toml @@ -2,7 +2,7 @@ name = "mktemp" version = "0.0.1" authors = [] -build = "../../mkmain.rs" +build = "../#common/mkmain.rs" [lib] name = "uu_mktemp" @@ -16,4 +16,4 @@ tempfile = "2.1.5" [[bin]] name = "mktemp" -path = "../../uumain.rs" +path = "../#common/uumain.rs" diff --git a/src/more/Cargo.toml b/src/more/Cargo.toml index 315d8f52d..e892056ac 100644 --- a/src/more/Cargo.toml +++ b/src/more/Cargo.toml @@ -2,7 +2,7 @@ name = "more" version = "0.0.1" authors = [] -build = "../../mkmain.rs" +build = "../#common/mkmain.rs" [lib] name = "uu_more" @@ -21,4 +21,4 @@ nix = "0.8.1" [[bin]] name = "more" -path = "../../uumain.rs" +path = "../#common/uumain.rs" diff --git a/src/mv/Cargo.toml b/src/mv/Cargo.toml index 5b60e4579..9a325da01 100644 --- a/src/mv/Cargo.toml +++ b/src/mv/Cargo.toml @@ -2,7 +2,7 @@ name = "mv" version = "0.0.1" authors = [] -build = "../../mkmain.rs" +build = "../#common/mkmain.rs" [lib] name = "uu_mv" @@ -14,4 +14,4 @@ uucore = "0.0.1" [[bin]] name = "mv" -path = "../../uumain.rs" +path = "../#common/uumain.rs" diff --git a/src/nice/Cargo.toml b/src/nice/Cargo.toml index 8401f1032..850fc68fc 100644 --- a/src/nice/Cargo.toml +++ b/src/nice/Cargo.toml @@ -2,7 +2,7 @@ name = "nice" version = "0.0.1" authors = [] -build = "../../mkmain.rs" +build = "../#common/mkmain.rs" [lib] name = "uu_nice" @@ -15,4 +15,4 @@ uucore = "0.0.1" [[bin]] name = "nice" -path = "../../uumain.rs" +path = "../#common/uumain.rs" diff --git a/src/nl/Cargo.toml b/src/nl/Cargo.toml index 5959c8bd5..ec25e21af 100644 --- a/src/nl/Cargo.toml +++ b/src/nl/Cargo.toml @@ -2,7 +2,7 @@ name = "nl" version = "0.0.1" authors = [] -build = "../../mkmain.rs" +build = "../#common/mkmain.rs" [lib] name = "uu_nl" @@ -19,4 +19,4 @@ uucore = "0.0.1" [[bin]] name = "nl" -path = "../../uumain.rs" +path = "../#common/uumain.rs" diff --git a/src/nohup/Cargo.toml b/src/nohup/Cargo.toml index 0302fa8d7..6ab835dec 100644 --- a/src/nohup/Cargo.toml +++ b/src/nohup/Cargo.toml @@ -2,7 +2,7 @@ name = "nohup" version = "0.0.1" authors = [] -build = "../../mkmain.rs" +build = "../#common/mkmain.rs" [lib] name = "uu_nohup" @@ -18,4 +18,4 @@ features = ["fs"] [[bin]] name = "nohup" -path = "../../uumain.rs" +path = "../#common/uumain.rs" diff --git a/src/nproc/Cargo.toml b/src/nproc/Cargo.toml index c622e3a2e..ecd44131d 100644 --- a/src/nproc/Cargo.toml +++ b/src/nproc/Cargo.toml @@ -2,7 +2,7 @@ name = "nproc" version = "0.0.1" authors = [] -build = "../../mkmain.rs" +build = "../#common/mkmain.rs" [lib] name = "uu_nproc" @@ -16,4 +16,4 @@ uucore = "0.0.1" [[bin]] name = "nproc" -path = "../../uumain.rs" +path = "../#common/uumain.rs" diff --git a/src/numfmt/Cargo.toml b/src/numfmt/Cargo.toml index c56d040f5..8a83cd26c 100644 --- a/src/numfmt/Cargo.toml +++ b/src/numfmt/Cargo.toml @@ -2,7 +2,7 @@ name = "numfmt" version = "0.0.1" authors = [] -build = "../../mkmain.rs" +build = "../#common/mkmain.rs" [lib] name = "uu_numfmt" @@ -14,4 +14,4 @@ uucore = "0.0.1" [[bin]] name = "numfmt" -path = "../../uumain.rs" +path = "../#common/uumain.rs" diff --git a/src/od/Cargo.toml b/src/od/Cargo.toml index 66fa397f1..607702fe2 100644 --- a/src/od/Cargo.toml +++ b/src/od/Cargo.toml @@ -2,7 +2,7 @@ name = "od" version = "0.0.1" authors = [] -build = "../../mkmain.rs" +build = "../#common/mkmain.rs" [lib] name = "uu_od" @@ -17,4 +17,4 @@ uucore = "0.0.1" [[bin]] name = "od" -path = "../../uumain.rs" +path = "../#common/uumain.rs" diff --git a/src/paste/Cargo.toml b/src/paste/Cargo.toml index fb0d70cd2..9a348f3af 100644 --- a/src/paste/Cargo.toml +++ b/src/paste/Cargo.toml @@ -2,7 +2,7 @@ name = "paste" version = "0.0.1" authors = [] -build = "../../mkmain.rs" +build = "../#common/mkmain.rs" [lib] name = "uu_paste" @@ -14,4 +14,4 @@ uucore = "0.0.1" [[bin]] name = "paste" -path = "../../uumain.rs" +path = "../#common/uumain.rs" diff --git a/src/pathchk/Cargo.toml b/src/pathchk/Cargo.toml index c6303a9cc..9ebb7a865 100644 --- a/src/pathchk/Cargo.toml +++ b/src/pathchk/Cargo.toml @@ -2,7 +2,7 @@ name = "pathchk" version = "0.0.1" authors = [] -build = "../../mkmain.rs" +build = "../#common/mkmain.rs" [lib] name = "uu_pathchk" @@ -15,4 +15,4 @@ uucore = "0.0.1" [[bin]] name = "pathchk" -path = "../../uumain.rs" +path = "../#common/uumain.rs" diff --git a/src/pinky/Cargo.toml b/src/pinky/Cargo.toml index 56c60aecf..7f9093880 100644 --- a/src/pinky/Cargo.toml +++ b/src/pinky/Cargo.toml @@ -2,7 +2,7 @@ name = "pinky" version = "0.0.1" authors = [] -build = "../../mkmain.rs" +build = "../#common/mkmain.rs" [lib] name = "uu_pinky" @@ -14,4 +14,4 @@ features = ["utmpx", "entries"] [[bin]] name = "pinky" -path = "../../uumain.rs" +path = "../#common/uumain.rs" diff --git a/src/printenv/Cargo.toml b/src/printenv/Cargo.toml index 36476dbd4..e4398778b 100644 --- a/src/printenv/Cargo.toml +++ b/src/printenv/Cargo.toml @@ -2,7 +2,7 @@ name = "printenv" version = "0.0.1" authors = [] -build = "../../mkmain.rs" +build = "../#common/mkmain.rs" [lib] name = "uu_printenv" @@ -14,4 +14,4 @@ uucore = "0.0.1" [[bin]] name = "printenv" -path = "../../uumain.rs" +path = "../#common/uumain.rs" diff --git a/src/printf/Cargo.toml b/src/printf/Cargo.toml index bf1ab0b8f..c5aaab558 100644 --- a/src/printf/Cargo.toml +++ b/src/printf/Cargo.toml @@ -2,7 +2,7 @@ name = "printf" version = "0.0.1" authors = ["Nathan Ross"] -build = "../../mkmain.rs" +build = "../#common/mkmain.rs" [lib] name = "uu_printf" @@ -14,4 +14,4 @@ uucore = "0.0.1" [[bin]] name = "printf" -path = "../../uumain.rs" +path = "../#common/uumain.rs" diff --git a/src/ptx/Cargo.toml b/src/ptx/Cargo.toml index 6a7ad255c..0cb6d1853 100644 --- a/src/ptx/Cargo.toml +++ b/src/ptx/Cargo.toml @@ -2,7 +2,7 @@ name = "ptx" version = "0.0.1" authors = [] -build = "../../mkmain.rs" +build = "../#common/mkmain.rs" [lib] name = "uu_ptx" @@ -19,4 +19,4 @@ uucore = "0.0.1" [[bin]] name = "ptx" -path = "../../uumain.rs" +path = "../#common/uumain.rs" diff --git a/src/pwd/Cargo.toml b/src/pwd/Cargo.toml index a6e29640b..d64d79893 100644 --- a/src/pwd/Cargo.toml +++ b/src/pwd/Cargo.toml @@ -2,7 +2,7 @@ name = "pwd" version = "0.0.1" authors = [] -build = "../../mkmain.rs" +build = "../#common/mkmain.rs" [lib] name = "uu_pwd" @@ -14,4 +14,4 @@ uucore = "0.0.1" [[bin]] name = "pwd" -path = "../../uumain.rs" +path = "../#common/uumain.rs" diff --git a/src/readlink/Cargo.toml b/src/readlink/Cargo.toml index 580d0b805..53dbba423 100644 --- a/src/readlink/Cargo.toml +++ b/src/readlink/Cargo.toml @@ -2,7 +2,7 @@ name = "readlink" version = "0.0.1" authors = [] -build = "../../mkmain.rs" +build = "../#common/mkmain.rs" [lib] name = "uu_readlink" @@ -18,4 +18,4 @@ features = ["fs"] [[bin]] name = "readlink" -path = "../../uumain.rs" +path = "../#common/uumain.rs" diff --git a/src/realpath/Cargo.toml b/src/realpath/Cargo.toml index 2b1c16a45..2f9b186ec 100644 --- a/src/realpath/Cargo.toml +++ b/src/realpath/Cargo.toml @@ -2,7 +2,7 @@ name = "realpath" version = "0.0.1" authors = [] -build = "../../mkmain.rs" +build = "../#common/mkmain.rs" [lib] name = "uu_realpath" @@ -17,4 +17,4 @@ features = ["fs"] [[bin]] name = "realpath" -path = "../../uumain.rs" +path = "../#common/uumain.rs" diff --git a/src/relpath/Cargo.toml b/src/relpath/Cargo.toml index 0855e0c0f..75f258a0a 100644 --- a/src/relpath/Cargo.toml +++ b/src/relpath/Cargo.toml @@ -2,7 +2,7 @@ name = "relpath" version = "0.0.1" authors = [] -build = "../../mkmain.rs" +build = "../#common/mkmain.rs" [lib] name = "uu_relpath" @@ -17,4 +17,4 @@ features = ["fs"] [[bin]] name = "relpath" -path = "../../uumain.rs" +path = "../#common/uumain.rs" diff --git a/src/rm/Cargo.toml b/src/rm/Cargo.toml index 45c9b72b9..cdc56a675 100644 --- a/src/rm/Cargo.toml +++ b/src/rm/Cargo.toml @@ -2,7 +2,7 @@ name = "rm" version = "0.0.1" authors = [] -build = "../../mkmain.rs" +build = "../#common/mkmain.rs" [lib] name = "uu_rm" @@ -16,4 +16,4 @@ uucore = "0.0.1" [[bin]] name = "rm" -path = "../../uumain.rs" +path = "../#common/uumain.rs" diff --git a/src/rmdir/Cargo.toml b/src/rmdir/Cargo.toml index 6f74aae90..ec8d749fe 100644 --- a/src/rmdir/Cargo.toml +++ b/src/rmdir/Cargo.toml @@ -2,7 +2,7 @@ name = "rmdir" version = "0.0.1" authors = [] -build = "../../mkmain.rs" +build = "../#common/mkmain.rs" [lib] name = "uu_rmdir" @@ -14,4 +14,4 @@ uucore = "0.0.1" [[bin]] name = "rmdir" -path = "../../uumain.rs" +path = "../#common/uumain.rs" diff --git a/src/seq/Cargo.toml b/src/seq/Cargo.toml index 43ab40aba..41423bd40 100644 --- a/src/seq/Cargo.toml +++ b/src/seq/Cargo.toml @@ -2,7 +2,7 @@ name = "seq" version = "0.0.1" authors = [] -build = "../../mkmain.rs" +build = "../#common/mkmain.rs" [lib] name = "uu_seq" @@ -14,4 +14,4 @@ uucore = "0.0.1" [[bin]] name = "seq" -path = "../../uumain.rs" +path = "../#common/uumain.rs" diff --git a/src/shred/Cargo.toml b/src/shred/Cargo.toml index 634c3ee63..5bbf3262c 100644 --- a/src/shred/Cargo.toml +++ b/src/shred/Cargo.toml @@ -2,7 +2,7 @@ name = "shred" version = "0.0.1" authors = [] -build = "../../mkmain.rs" +build = "../#common/mkmain.rs" [lib] name = "uu_shred" @@ -18,4 +18,4 @@ uucore = "0.0.1" [[bin]] name = "shred" -path = "../../uumain.rs" +path = "../#common/uumain.rs" diff --git a/src/shuf/Cargo.toml b/src/shuf/Cargo.toml index 9e04c2046..9031ec00f 100644 --- a/src/shuf/Cargo.toml +++ b/src/shuf/Cargo.toml @@ -2,7 +2,7 @@ name = "shuf" version = "0.0.1" authors = [] -build = "../../mkmain.rs" +build = "../#common/mkmain.rs" [lib] name = "uu_shuf" @@ -15,4 +15,4 @@ uucore = "0.0.1" [[bin]] name = "shuf" -path = "../../uumain.rs" +path = "../#common/uumain.rs" diff --git a/src/sleep/Cargo.toml b/src/sleep/Cargo.toml index 5dff8703a..cf3fd3a75 100644 --- a/src/sleep/Cargo.toml +++ b/src/sleep/Cargo.toml @@ -2,7 +2,7 @@ name = "sleep" version = "0.0.1" authors = [] -build = "../../mkmain.rs" +build = "../#common/mkmain.rs" [lib] name = "uu_sleep" @@ -17,4 +17,4 @@ features = ["parse_time"] [[bin]] name = "sleep" -path = "../../uumain.rs" +path = "../#common/uumain.rs" diff --git a/src/sort/Cargo.toml b/src/sort/Cargo.toml index f221ec054..10ebc4b88 100644 --- a/src/sort/Cargo.toml +++ b/src/sort/Cargo.toml @@ -2,7 +2,7 @@ name = "sort" version = "0.0.1" authors = [] -build = "../../mkmain.rs" +build = "../#common/mkmain.rs" [lib] name = "uu_sort" @@ -19,4 +19,4 @@ features = ["fs"] [[bin]] name = "sort" -path = "../../uumain.rs" +path = "../#common/uumain.rs" diff --git a/src/split/Cargo.toml b/src/split/Cargo.toml index 8bf0d2022..87988ae9e 100644 --- a/src/split/Cargo.toml +++ b/src/split/Cargo.toml @@ -2,7 +2,7 @@ name = "split" version = "0.0.1" authors = [] -build = "../../mkmain.rs" +build = "../#common/mkmain.rs" [lib] name = "uu_split" @@ -14,4 +14,4 @@ uucore = "0.0.1" [[bin]] name = "split" -path = "../../uumain.rs" +path = "../#common/uumain.rs" diff --git a/src/stat/Cargo.toml b/src/stat/Cargo.toml index 992ca7f88..445ee0b1f 100644 --- a/src/stat/Cargo.toml +++ b/src/stat/Cargo.toml @@ -2,7 +2,7 @@ name = "stat" version = "0.0.1" authors = [] -build = "../../mkmain.rs" +build = "../#common/mkmain.rs" [lib] name = "uu_stat" @@ -18,4 +18,4 @@ features = ["entries"] [[bin]] name = "stat" -path = "../../uumain.rs" +path = "../#common/uumain.rs" diff --git a/src/stdbuf/Cargo.toml b/src/stdbuf/Cargo.toml index d31e175b1..360c0fbf9 100644 --- a/src/stdbuf/Cargo.toml +++ b/src/stdbuf/Cargo.toml @@ -18,4 +18,4 @@ libstdbuf = { path="libstdbuf" } [[bin]] name = "stdbuf" -path = "../../uumain.rs" +path = "../#common/uumain.rs" diff --git a/src/stdbuf/build.rs b/src/stdbuf/build.rs index 73189508b..90b16c908 100644 --- a/src/stdbuf/build.rs +++ b/src/stdbuf/build.rs @@ -2,7 +2,7 @@ use std::env; use std::fs; use std::path::Path; -#[path = "../../mkmain.rs"] +#[path = "../#common/mkmain.rs"] mod mkmain; #[cfg(not(any(target_os = "macos", target_os = "ios", target_os = "windows")))] diff --git a/src/sum/Cargo.toml b/src/sum/Cargo.toml index 572f49e2b..95e8f2eee 100644 --- a/src/sum/Cargo.toml +++ b/src/sum/Cargo.toml @@ -2,7 +2,7 @@ name = "sum" version = "0.0.1" authors = [] -build = "../../mkmain.rs" +build = "../#common/mkmain.rs" [lib] name = "uu_sum" @@ -14,4 +14,4 @@ uucore = "0.0.1" [[bin]] name = "sum" -path = "../../uumain.rs" +path = "../#common/uumain.rs" diff --git a/src/sync/Cargo.toml b/src/sync/Cargo.toml index 361a570de..f8cc22f56 100644 --- a/src/sync/Cargo.toml +++ b/src/sync/Cargo.toml @@ -2,7 +2,7 @@ name = "sync" version = "0.0.1" authors = [] -build = "../../mkmain.rs" +build = "../#common/mkmain.rs" [lib] name = "uu_sync" @@ -20,4 +20,4 @@ features = ["wide"] [[bin]] name = "sync" -path = "../../uumain.rs" +path = "../#common/uumain.rs" diff --git a/src/tac/Cargo.toml b/src/tac/Cargo.toml index 0f09e1a9b..85ccd824e 100644 --- a/src/tac/Cargo.toml +++ b/src/tac/Cargo.toml @@ -2,7 +2,7 @@ name = "tac" version = "0.0.1" authors = [] -build = "../../mkmain.rs" +build = "../#common/mkmain.rs" [lib] name = "uu_tac" @@ -14,4 +14,4 @@ uucore = "0.0.1" [[bin]] name = "tac" -path = "../../uumain.rs" +path = "../#common/uumain.rs" diff --git a/src/tail/Cargo.toml b/src/tail/Cargo.toml index 337ea3436..ed5513be1 100644 --- a/src/tail/Cargo.toml +++ b/src/tail/Cargo.toml @@ -2,7 +2,7 @@ name = "tail" version = "0.0.1" authors = [] -build = "../../mkmain.rs" +build = "../#common/mkmain.rs" [lib] name = "uu_tail" @@ -20,4 +20,4 @@ redox_syscall = "0.1" [[bin]] name = "tail" -path = "../../uumain.rs" +path = "../#common/uumain.rs" diff --git a/src/tee/Cargo.toml b/src/tee/Cargo.toml index d1d86612a..91aa36fac 100644 --- a/src/tee/Cargo.toml +++ b/src/tee/Cargo.toml @@ -2,7 +2,7 @@ name = "tee" version = "0.0.1" authors = [] -build = "../../mkmain.rs" +build = "../#common/mkmain.rs" [lib] name = "uu_tee" @@ -15,4 +15,4 @@ uucore = "0.0.1" [[bin]] name = "tee" -path = "../../uumain.rs" +path = "../#common/uumain.rs" diff --git a/src/test/Cargo.toml b/src/test/Cargo.toml index 92a4dd141..eba58f715 100644 --- a/src/test/Cargo.toml +++ b/src/test/Cargo.toml @@ -2,7 +2,7 @@ name = "test" version = "0.0.1" authors = [] -build = "../../mkmain.rs" +build = "../#common/mkmain.rs" [lib] name = "uu_test" @@ -17,4 +17,4 @@ redox_syscall = "0.1" [[bin]] name = "test" -path = "../../uumain.rs" +path = "../#common/uumain.rs" diff --git a/src/timeout/Cargo.toml b/src/timeout/Cargo.toml index 69fd52e4f..7299be4e7 100644 --- a/src/timeout/Cargo.toml +++ b/src/timeout/Cargo.toml @@ -2,7 +2,7 @@ name = "timeout" version = "0.0.1" authors = [] -build = "../../mkmain.rs" +build = "../#common/mkmain.rs" [lib] name = "uu_timeout" @@ -19,4 +19,4 @@ features = ["parse_time", "process"] [[bin]] name = "timeout" -path = "../../uumain.rs" +path = "../#common/uumain.rs" diff --git a/src/touch/Cargo.toml b/src/touch/Cargo.toml index d29303780..cd5b0bcb0 100644 --- a/src/touch/Cargo.toml +++ b/src/touch/Cargo.toml @@ -2,7 +2,7 @@ name = "touch" version = "0.0.1" authors = [] -build = "../../mkmain.rs" +build = "../#common/mkmain.rs" [lib] name = "uu_touch" @@ -19,4 +19,4 @@ features = ["libc"] [[bin]] name = "touch" -path = "../../uumain.rs" +path = "../#common/uumain.rs" diff --git a/src/tr/Cargo.toml b/src/tr/Cargo.toml index 4c3421b74..d1f1d9537 100644 --- a/src/tr/Cargo.toml +++ b/src/tr/Cargo.toml @@ -2,7 +2,7 @@ name = "tr" version = "0.0.1" authors = [] -build = "../../mkmain.rs" +build = "../#common/mkmain.rs" [lib] name = "uu_tr" @@ -16,4 +16,4 @@ uucore = "0.0.1" [[bin]] name = "tr" -path = "../../uumain.rs" +path = "../#common/uumain.rs" diff --git a/src/true/Cargo.toml b/src/true/Cargo.toml index 41c95aec2..422abdb49 100644 --- a/src/true/Cargo.toml +++ b/src/true/Cargo.toml @@ -2,7 +2,7 @@ name = "true" version = "0.0.1" authors = [] -build = "../../mkmain.rs" +build = "../#common/mkmain.rs" [lib] name = "uu_true" @@ -13,4 +13,4 @@ uucore = "0.0.1" [[bin]] name = "true" -path = "../../uumain.rs" +path = "../#common/uumain.rs" diff --git a/src/truncate/Cargo.toml b/src/truncate/Cargo.toml index a7a4cd539..5835c8a0e 100644 --- a/src/truncate/Cargo.toml +++ b/src/truncate/Cargo.toml @@ -2,7 +2,7 @@ name = "truncate" version = "0.0.1" authors = [] -build = "../../mkmain.rs" +build = "../#common/mkmain.rs" [lib] name = "uu_truncate" @@ -14,4 +14,4 @@ uucore = "0.0.1" [[bin]] name = "truncate" -path = "../../uumain.rs" +path = "../#common/uumain.rs" diff --git a/src/tsort/Cargo.toml b/src/tsort/Cargo.toml index b2c3fe4dc..2e053e9ff 100644 --- a/src/tsort/Cargo.toml +++ b/src/tsort/Cargo.toml @@ -2,7 +2,7 @@ name = "tsort" version = "0.0.1" authors = [] -build = "../../mkmain.rs" +build = "../#common/mkmain.rs" [lib] name = "uu_tsort" @@ -14,4 +14,4 @@ uucore = "0.0.1" [[bin]] name = "tsort" -path = "../../uumain.rs" +path = "../#common/uumain.rs" diff --git a/src/tty/Cargo.toml b/src/tty/Cargo.toml index 57185ce86..3841144ce 100644 --- a/src/tty/Cargo.toml +++ b/src/tty/Cargo.toml @@ -2,7 +2,7 @@ name = "tty" version = "0.0.1" authors = [] -build = "../../mkmain.rs" +build = "../#common/mkmain.rs" [lib] name = "uu_tty" @@ -18,4 +18,4 @@ features = ["fs"] [[bin]] name = "tty" -path = "../../uumain.rs" +path = "../#common/uumain.rs" diff --git a/src/uname/Cargo.toml b/src/uname/Cargo.toml index 3129adac2..870672f49 100644 --- a/src/uname/Cargo.toml +++ b/src/uname/Cargo.toml @@ -2,7 +2,7 @@ name = "uname" version = "0.0.1" authors = [] -build = "../../mkmain.rs" +build = "../#common/mkmain.rs" [lib] name = "uu_uname" @@ -15,4 +15,4 @@ uucore = "0.0.1" [[bin]] name = "uname" -path = "../../uumain.rs" +path = "../#common/uumain.rs" diff --git a/src/unexpand/Cargo.toml b/src/unexpand/Cargo.toml index 1521a9225..29e13795c 100644 --- a/src/unexpand/Cargo.toml +++ b/src/unexpand/Cargo.toml @@ -2,7 +2,7 @@ name = "unexpand" version = "0.0.1" authors = [] -build = "../../mkmain.rs" +build = "../#common/mkmain.rs" [lib] name = "uu_unexpand" @@ -15,4 +15,4 @@ uucore = "0.0.1" [[bin]] name = "unexpand" -path = "../../uumain.rs" +path = "../#common/uumain.rs" diff --git a/src/uniq/Cargo.toml b/src/uniq/Cargo.toml index 17b014f56..82b96d314 100644 --- a/src/uniq/Cargo.toml +++ b/src/uniq/Cargo.toml @@ -2,7 +2,7 @@ name = "uniq" version = "0.0.1" authors = [] -build = "../../mkmain.rs" +build = "../#common/mkmain.rs" [lib] name = "uu_uniq" @@ -14,4 +14,4 @@ uucore = "0.0.1" [[bin]] name = "uniq" -path = "../../uumain.rs" +path = "../#common/uumain.rs" diff --git a/src/unlink/Cargo.toml b/src/unlink/Cargo.toml index 2606d66c7..1a5e9ed2e 100644 --- a/src/unlink/Cargo.toml +++ b/src/unlink/Cargo.toml @@ -2,7 +2,7 @@ name = "unlink" version = "0.0.1" authors = [] -build = "../../mkmain.rs" +build = "../#common/mkmain.rs" [lib] name = "uu_unlink" @@ -15,4 +15,4 @@ uucore = "0.0.1" [[bin]] name = "unlink" -path = "../../uumain.rs" +path = "../#common/uumain.rs" diff --git a/src/uptime/Cargo.toml b/src/uptime/Cargo.toml index cf86a2e66..1ee3c4cbb 100644 --- a/src/uptime/Cargo.toml +++ b/src/uptime/Cargo.toml @@ -2,7 +2,7 @@ name = "uptime" version = "0.0.1" authors = [] -build = "../../mkmain.rs" +build = "../#common/mkmain.rs" [lib] name = "uu_uptime" @@ -18,4 +18,4 @@ features = ["utmpx"] [[bin]] name = "uptime" -path = "../../uumain.rs" +path = "../#common/uumain.rs" diff --git a/src/users/Cargo.toml b/src/users/Cargo.toml index 4ef060373..7622dda72 100644 --- a/src/users/Cargo.toml +++ b/src/users/Cargo.toml @@ -2,7 +2,7 @@ name = "users" version = "0.0.1" authors = [] -build = "../../mkmain.rs" +build = "../#common/mkmain.rs" [lib] name = "uu_users" @@ -17,4 +17,4 @@ version = "0.0.1" [[bin]] name = "users" -path = "../../uumain.rs" +path = "../#common/uumain.rs" diff --git a/src/wc/Cargo.toml b/src/wc/Cargo.toml index 51c59590f..5233b196e 100644 --- a/src/wc/Cargo.toml +++ b/src/wc/Cargo.toml @@ -2,7 +2,7 @@ name = "wc" version = "0.0.1" authors = [] -build = "../../mkmain.rs" +build = "../#common/mkmain.rs" [lib] name = "uu_wc" @@ -14,4 +14,4 @@ uucore = "0.0.1" [[bin]] name = "wc" -path = "../../uumain.rs" +path = "../#common/uumain.rs" diff --git a/src/who/Cargo.toml b/src/who/Cargo.toml index 036ba672b..e0663e7d0 100644 --- a/src/who/Cargo.toml +++ b/src/who/Cargo.toml @@ -2,7 +2,7 @@ name = "who" version = "0.0.1" authors = [] -build = "../../mkmain.rs" +build = "../#common/mkmain.rs" [lib] name = "uu_who" @@ -18,4 +18,4 @@ optional = true [[bin]] name = "who" -path = "../../uumain.rs" +path = "../#common/uumain.rs" diff --git a/src/whoami/Cargo.toml b/src/whoami/Cargo.toml index 32d7771b9..1d35dc5ad 100644 --- a/src/whoami/Cargo.toml +++ b/src/whoami/Cargo.toml @@ -3,7 +3,7 @@ name = "whoami" version = "0.0.1" authors = [] description = "Print effective user ID." -build = "../../mkmain.rs" +build = "../#common/mkmain.rs" [lib] name = "uu_whoami" @@ -20,4 +20,4 @@ features = ["entries", "wide"] [[bin]] name = "whoami" -path = "../../uumain.rs" +path = "../#common/uumain.rs" diff --git a/src/yes/Cargo.toml b/src/yes/Cargo.toml index 736c5ee64..8a4c93400 100644 --- a/src/yes/Cargo.toml +++ b/src/yes/Cargo.toml @@ -3,7 +3,7 @@ name = "yes" version = "0.0.1" authors = [] description = "Repeatedly output a line with all specified STRING(s), or 'y'." -build = "../../mkmain.rs" +build = "../#common/mkmain.rs" [lib] name = "uu_yes" @@ -19,4 +19,4 @@ default = [] [[bin]] name = "yes" -path = "../../uumain.rs" +path = "../#common/uumain.rs"