hey jeremy,
i am attempting to emerge the ~x86 squirrelmail-1.5.1 and came upon this odd
error:
* ebuild fault: file
'/usr/share/webapps/squirrelmail/1.5.1/htdocs/plugins/*/gpg_local_prefs.txt'
not found
* Please report this as a bug at http://bugs.gentoo.org/
i poked around in the ebuild and found, what i think is the offending line
(125):
for doc in
plugins/{README.plugins,*/{INSTALL,README,COPYRIGHTS,CHANGELOG,API,UPGRADE,TODO,README.txt,INSTALL.txt,user_example.txt}}
; do
i think my mind is getting lost in the syntax of the { }.
i tried changing it to
for doc in
plugins/{README.plugins,*}/{INSTALL,README,COPYRIGHTS,CHANGELOG,API,UPGRADE,TODO,README.txt,INSTALL.txt,user_example.txt}
; do
which made sense to me, but that only errored out even more. any ideas here?