"intltoolize: command not found". How to acquire it 20 July 2022, 10:15:49 Anyone ever go through Code: [Select]./autogen.sh: line 4: intltoolize: command not foundwhen try to install/build (here case is geany plugin) ?Please help out, thanks before
Re: "intltoolize: command not found". How to acquire it Reply #1 – 20 July 2022, 11:06:26 You should install the package "intltool"Code: [Select]pacman -Sy intltoolAn extra tip: If you don't know what package you should install you can configure "command not found" in bash. So, when you enter a command not found it will recommend you the way to install it. It doesn't work with all packages but It's very useful. https://wiki.archlinux.org/title/bash#Command_not_foundFor example, in my case: Code: [Select]$intltoolizeintltoolize may be found in the following packages: world/intltool 0.51.0-6 /usr/bin/intltoolize extra/intltool 0.51.0-6 /usr/bin/intltoolize 1 Likes
Re: "intltoolize: command not found". How to acquire it Reply #2 – 20 July 2022, 17:05:55 sudo pacman -S base-devel. ?