Historical bug tracker for the Pacman package manager.
The pacman bug tracker has moved to gitlab:
https://gitlab.archlinux.org/pacman/pacman/-/issues
This tracker remains open for interaction with historical bugs during the transition period. Any new bugs reports will be closed without further action.
The pacman bug tracker has moved to gitlab:
https://gitlab.archlinux.org/pacman/pacman/-/issues
This tracker remains open for interaction with historical bugs during the transition period. Any new bugs reports will be closed without further action.
FS#2108 - find warning in makeworld script (pacman 2.9.5-1)
|
DetailsThe find command used in makeworld script return warnings.
Specifying '-maxdepth' and '-mindepth' options before '-type d' argument will solve the problem. Line 119 should be read like this: for port in `find $toplevel/$category -maxdepth 1 -mindepth 1 -type d | sort`; do instead of: for port in `find $toplevel/$category -type d -maxdepth 1 -mindepth 1 | sort`; do |
This task depends upon
Closed by Judd Vinet (judd)
Monday, 31 January 2005, 19:05 GMT
Reason for closing: Fixed
Additional comments about closing: Fixed in CVS
Monday, 31 January 2005, 19:05 GMT
Reason for closing: Fixed
Additional comments about closing: Fixed in CVS
Line 109:
< cd -
---
> cd - &> /dev/null