diff options
author | Christian Pointner <equinox@helsinki.at> | 2010-04-13 11:44:59 (GMT) |
---|---|---|
committer | Christian Pointner <equinox@helsinki.at> | 2010-04-13 11:44:59 (GMT) |
commit | 4fef137f08bdf40fc0bb0a31114d27ad09556517 (patch) | |
tree | e6718f73fc7573a6f9b9245ec21fc97808ca232e /rhimport | |
parent | 861a34f92f7871ff14e15b24ea202a70c34607c4 (diff) |
added configure script and Makefile for Installation
git-svn-id: https://svn.helsinki.at/rhimport/trunk@43 7c65635b-ec39-4f67-a626-873dbafdd612
Diffstat (limited to 'rhimport')
-rwxr-xr-x | rhimport | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -28,8 +28,9 @@ use DBI; use Gtk2; use Gtk2::GladeXML; -use lib '/usr/share/perl5/rhimport/'; +use lib '/usr/local/share/rhimport/'; use rhimport; +my $glade_file = '/usr/local/share/rhimport/rhimport.glade'; my $DBHOST = "airplay"; my $DBUSER = "rivendell"; @@ -322,7 +323,7 @@ sub dropbox_updated_gui() if(!$FILE || !$DROPBOX) { Gtk2->init; - $guixml = Gtk2::GladeXML->new('rhimport.glade'); + $guixml = Gtk2::GladeXML->new($glade_file); $guixml or die "can't load glade xml file"; require gui_callbacks; |