diff options
author | P. J. McDermott <pj@pehjota.net> | 2015-12-06 23:07:41 (EST) |
---|---|---|
committer | P. J. McDermott <pj@pehjota.net> | 2015-12-06 23:07:41 (EST) |
commit | d3eb7d0fc80ff7cf23a7fdc583aef8afd0876eeb (patch) | |
tree | 3cf47228e76f603998813a016485fd871a8a6848 | |
parent | 323d955fce69a0781b3bd6633e427216aaa60414 (diff) |
lib/cmd/*.sh: Don't use use()
-rw-r--r-- | lib/cmd/build.sh | 7 | ||||
-rw-r--r-- | lib/cmd/install.sh | 6 | ||||
-rw-r--r-- | lib/cmd/installer-pc.sh | 6 | ||||
-rw-r--r-- | lib/cmd/opkg.sh | 5 | ||||
-rw-r--r-- | lib/cmd/shell.sh | 4 |
5 files changed, 0 insertions, 28 deletions
diff --git a/lib/cmd/build.sh b/lib/cmd/build.sh index 220058a..8d12691 100644 --- a/lib/cmd/build.sh +++ b/lib/cmd/build.sh @@ -18,13 +18,6 @@ # along with the ProteanOS Development Kit. If not, see # <http://www.gnu.org/licenses/>. -use block -use profile -use session -use rand -use package -use control - cmd_build_root= cmd_build_pkg_dir= cmd_build_build_deps= diff --git a/lib/cmd/install.sh b/lib/cmd/install.sh index d773de2..e0bdc4e 100644 --- a/lib/cmd/install.sh +++ b/lib/cmd/install.sh @@ -18,12 +18,6 @@ # along with the ProteanOS Development Kit. If not, see # <http://www.gnu.org/licenses/>. -use getopt -use feed -use profile -use block -use install - cmd_install_optstring='a:p:m:F' cmd_install_main() diff --git a/lib/cmd/installer-pc.sh b/lib/cmd/installer-pc.sh index 162af16..dd01506 100644 --- a/lib/cmd/installer-pc.sh +++ b/lib/cmd/installer-pc.sh @@ -18,12 +18,6 @@ # along with the ProteanOS Development Kit. If not, see # <http://www.gnu.org/licenses/>. -use getopt -use profile -use block -use install -use session - cmd_installer_pc_optstring='a:p:m:' cmd_installer_pc_main() diff --git a/lib/cmd/opkg.sh b/lib/cmd/opkg.sh index dc7bc04..e1fc8ce 100644 --- a/lib/cmd/opkg.sh +++ b/lib/cmd/opkg.sh @@ -18,11 +18,6 @@ # along with the ProteanOS Development Kit. If not, see # <http://www.gnu.org/licenses/>. -use block -use profile -use session -use rand - cmd_opkg_opks= cmd_opkg_main() diff --git a/lib/cmd/shell.sh b/lib/cmd/shell.sh index 811ce49..468da0f 100644 --- a/lib/cmd/shell.sh +++ b/lib/cmd/shell.sh @@ -18,10 +18,6 @@ # along with the ProteanOS Development Kit. If not, see # <http://www.gnu.org/licenses/>. -use block -use profile -use session - cmd_shell_main() { local root= |