Bug 187734

Summary: fluxbox startup file contains wrong invokation of fluxbox-generate_menu
Product: [Fedora] Fedora Reporter: Till Maas <opensource>
Component: fluxboxAssignee: Andreas Bierfert <andreas.bierfert>
Status: CLOSED NEXTRELEASE QA Contact: Fedora Extras Quality Assurance <extras-qa>
Severity: medium Docs Contact:
Priority: medium    
Version: 5CC: extras-qa
Target Milestone: ---   
Target Release: ---   
Hardware: All   
OS: Linux   
Whiteboard:
Fixed In Version: Doc Type: Bug Fix
Doc Text:
Story Points: ---
Clone Of: Environment:
Last Closed: 2006-04-03 12:14:52 UTC Type: ---
Regression: --- Mount Type: ---
Documentation: --- CRM:
Verified Versions: Category: ---
oVirt Team: --- RHEL 7.3 requirements from Atomic Host:
Cloudforms Team: --- Target Upstream Version:
Embargoed:

Description Till Maas 2006-04-03 11:52:37 UTC
Description of problem: 
 
/usr/bin/startfluxbox contains 
 
     79 if [ -x /usr/bin/fluxbox-xdg-menu.py ]; then 
     80  /usr/bin/fluxbox-generate_menu --with-icons & 
     81 fi 
 
to create the menu of fluxbox. This does not work because 
fluxbox-generate_menu does not accept gnu-longoptions. 
 
I guess it was intendet to change this to  
 
     79 if [ -x /usr/bin/fluxbox-xdg-menu.py ]; then 
     80  /usr/bin/fluxbox-xdg-menu.py --with-icons & 
     81 fi 
 
because fluxbox-xdg-menu accepts the option --with-icons. 
 
Version-Release number of selected component (if applicable): 
 
0.9.15-1.fc5

Comment 1 Andreas Bierfert 2006-04-03 12:14:52 UTC
Ups, thanks for reporting :)

Comment 2 Till Maas 2006-04-03 12:29:59 UTC
I just saw that the .py extensions needs to be removed, so this is correct: 
 
     79 if [ -x /usr/bin/fluxbox-xdg-menu ]; then  
     80  /usr/bin/fluxbox-xdg-menu --with-icons &  
     81 fi