updated setup files to reflect glade->builder change

This commit is contained in:
punkrockguy318 2008-06-17 17:33:48 +00:00
parent 763a886c74
commit a5d1f30977
3 changed files with 3 additions and 3 deletions

View File

@ -4,7 +4,7 @@ COPYING
ChangeLog
INSTALL
TODO
gfceu.glade
gfceu.xml
gfceu.desktop
gfceu.png
gfceu_big.png

2
gfceu
View File

@ -293,7 +293,7 @@ class GfceuApp:
glade_file = os.path.join(os.path.dirname(sys.argv[0]), '../share/gfceu/gfceu.xml')
else:
print 'ERROR.'
print 'Could not find the glade interface file.'
print 'Could not find the glade.xml file.'
print 'Try reinstalling the application.'
sys.exit(1)

View File

@ -3,7 +3,7 @@ from distutils.core import setup
setup(name="gfceu",
version="0.7svn",
scripts = ['gfceu'],
data_files=[('share/gfceu/',['gfceu.glade', 'gfceu_big.png', 'gfceu.png']),
data_files=[('share/gfceu/',['gfceu.xml', 'gfceu_big.png', 'gfceu.png']),
('share/pixmaps/', ['gfceu.png']),
('share/man/man1/', ['gfceu.1']),
('share/applications/', ['gfceu.desktop'])],