Skip to content

Commit

Permalink
Update command lists
Browse files Browse the repository at this point in the history
  • Loading branch information
Grimler91 committed Feb 3, 2022
1 parent 7e0dfde commit 9bfb9d3
Show file tree
Hide file tree
Showing 16 changed files with 899 additions and 27 deletions.
24 changes: 12 additions & 12 deletions command-not-found.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -26,41 +26,41 @@ using namespace std;

list<string> main_commands = {
#ifdef __aarch64__
# include "termux-packages/commands-aarch64-ee0de34.h"
# include "termux-packages/commands-aarch64-5ea47ac.h"
#elif defined __arm__
# include "termux-packages/commands-arm-ee0de34.h"
# include "termux-packages/commands-arm-5ea47ac.h"
#elif defined __i686__
# include "termux-packages/commands-i686-ee0de34.h"
# include "termux-packages/commands-i686-5ea47ac.h"
#elif defined __x86_64__
# include "termux-packages/commands-x86_64-ee0de34.h"
# include "termux-packages/commands-x86_64-5ea47ac.h"
#else
# error Failed to detect arch
#endif
};

list<string> root_commands = {
#ifdef __aarch64__
# include "termux-root-packages/commands-aarch64-4cb200b.h"
# include "termux-root-packages/commands-aarch64-3f66270.h"
#elif defined __arm__
# include "termux-root-packages/commands-arm-4cb200b.h"
# include "termux-root-packages/commands-arm-3f66270.h"
#elif defined __i686__
# include "termux-root-packages/commands-i686-4cb200b.h"
# include "termux-root-packages/commands-i686-3f66270.h"
#elif defined __x86_64__
# include "termux-root-packages/commands-x86_64-4cb200b.h"
# include "termux-root-packages/commands-x86_64-3f66270.h"
#else
# error Failed to detect arch
#endif
};

list<string> x11_commands = {
#ifdef __aarch64__
# include "x11-packages/commands-aarch64-f7c869e.h"
# include "x11-packages/commands-aarch64-39a910c.h"
#elif defined __arm__
# include "x11-packages/commands-arm-f7c869e.h"
# include "x11-packages/commands-arm-39a910c.h"
#elif defined __i686__
# include "x11-packages/commands-i686-f7c869e.h"
# include "x11-packages/commands-i686-39a910c.h"
#elif defined __x86_64__
# include "x11-packages/commands-x86_64-f7c869e.h"
# include "x11-packages/commands-x86_64-39a910c.h"
#else
# error Failed to detect arch
#endif
Expand Down
Loading

0 comments on commit 9bfb9d3

Please sign in to comment.