Skip to content

Commit b983dc8

Browse files
committed
Check in forgotten command-not-found.cpp
List names were wrong in previous commit.
1 parent 04453f1 commit b983dc8

1 file changed

Lines changed: 16 additions & 16 deletions

File tree

command-not-found.cpp

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -40,27 +40,27 @@ list<string> games_commands = {
4040

4141
list<string> main_commands = {
4242
#ifdef __aarch64__
43-
# include "termux-packages/commands-aarch64-6fb850d.h"
43+
# include "termux-packages/commands-aarch64-df91c54.h"
4444
#elif defined __arm__
45-
# include "termux-packages/commands-arm-6fb850d.h"
45+
# include "termux-packages/commands-arm-df91c54.h"
4646
#elif defined __i686__
47-
# include "termux-packages/commands-i686-6fb850d.h"
47+
# include "termux-packages/commands-i686-df91c54.h"
4848
#elif defined __x86_64__
49-
# include "termux-packages/commands-x86_64-6fb850d.h"
49+
# include "termux-packages/commands-x86_64-df91c54.h"
5050
#else
5151
# error Failed to detect arch
5252
#endif
5353
};
5454

5555
list<string> root_commands = {
5656
#ifdef __aarch64__
57-
# include "termux-root-packages/commands-aarch64-f7b315c.h"
57+
# include "termux-root-packages/commands-aarch64-9505fdd.h"
5858
#elif defined __arm__
59-
# include "termux-root-packages/commands-arm-f7b315c.h"
59+
# include "termux-root-packages/commands-arm-9505fdd.h"
6060
#elif defined __i686__
61-
# include "termux-root-packages/commands-i686-f7b315c.h"
61+
# include "termux-root-packages/commands-i686-9505fdd.h"
6262
#elif defined __x86_64__
63-
# include "termux-root-packages/commands-x86_64-f7b315c.h"
63+
# include "termux-root-packages/commands-x86_64-9505fdd.h"
6464
#else
6565
# error Failed to detect arch
6666
#endif
@@ -82,27 +82,27 @@ list<string> science_commands = {
8282

8383
list<string> unstable_commands = {
8484
#ifdef __aarch64__
85-
# include "unstable-packages/commands-aarch64-219eadd.h"
85+
# include "unstable-packages/commands-aarch64-a6e70cf.h"
8686
#elif defined __arm__
87-
# include "unstable-packages/commands-arm-219eadd.h"
87+
# include "unstable-packages/commands-arm-a6e70cf.h"
8888
#elif defined __i686__
89-
# include "unstable-packages/commands-i686-219eadd.h"
89+
# include "unstable-packages/commands-i686-a6e70cf.h"
9090
#elif defined __x86_64__
91-
# include "unstable-packages/commands-x86_64-219eadd.h"
91+
# include "unstable-packages/commands-x86_64-a6e70cf.h"
9292
#else
9393
# error Failed to detect arch
9494
#endif
9595
};
9696

9797
list<string> x11_commands = {
9898
#ifdef __aarch64__
99-
# include "x11-packages/commands-aarch64-5dedf6c.h"
99+
# include "x11-packages/commands-aarch64-89582be.h"
100100
#elif defined __arm__
101-
# include "x11-packages/commands-arm-5dedf6c.h"
101+
# include "x11-packages/commands-arm-89582be.h"
102102
#elif defined __i686__
103-
# include "x11-packages/commands-i686-5dedf6c.h"
103+
# include "x11-packages/commands-i686-89582be.h"
104104
#elif defined __x86_64__
105-
# include "x11-packages/commands-x86_64-5dedf6c.h"
105+
# include "x11-packages/commands-x86_64-89582be.h"
106106
#else
107107
# error Failed to detect arch
108108
#endif

0 commit comments

Comments
 (0)