12 Oct
2012
12 Oct
'12
12:47 p.m.
On Fri, Oct 12, 2012 at 08:43:53PM +0800, Tianjiao Yin wrote:
Hello, all:
When we run "pacman -S Firefox", we will get "error: target not found: Firefox" because there is only firefox, not Firefox, in repo. IMHO it could be better if pacman is case insensitive.
Regards, Mizuchi
Pardon? This is already the case: $ pacman -Ssq FIREFOX | wc -l 184 Sure enough, we use case insensitive regex. From lib/libalpm/db.c: if(regcomp(®, targ, REG_EXTENDED | REG_NOSUB | REG_ICASE | REG_NEWLINE) != 0) { ... Please make sure pacman isn't an alias or wrapper to some other program that isn't pacman. Cheers, Dave