summaryrefslogtreecommitdiff
path: root/rhimport
diff options
context:
space:
mode:
authorChristian Pointner <equinox@helsinki.at>2010-04-13 11:44:59 (GMT)
committerChristian Pointner <equinox@helsinki.at>2010-04-13 11:44:59 (GMT)
commit4fef137f08bdf40fc0bb0a31114d27ad09556517 (patch)
treee6718f73fc7573a6f9b9245ec21fc97808ca232e /rhimport
parent861a34f92f7871ff14e15b24ea202a70c34607c4 (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-xrhimport5
1 files changed, 3 insertions, 2 deletions
diff --git a/rhimport b/rhimport
index b59ebfd..2e4729e 100755
--- a/rhimport
+++ b/rhimport
@@ -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;