X-Git-Url: http://mj.ucw.cz/gitweb/?a=blobdiff_plain;f=PciIds%2FStartup.pm;h=2bacade7178c57faf0077df25889bc3e2d79fd74;hb=720b981791aa4e71bf992d490274ce083beceace;hp=c8284d940b9b523edb67985c152114d624cbb33d;hpb=94781b45e2337c21ca1d8ab9ff5f76c8899cf5aa;p=pciids.git diff --git a/PciIds/Startup.pm b/PciIds/Startup.pm index c8284d9..2bacade 100644 --- a/PciIds/Startup.pm +++ b/PciIds/Startup.pm @@ -1,13 +1,31 @@ +# PciIds web database +# Copyright (C) 2008 Michal Vaner (vorner@ucw.cz) +# +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# he Free Software Foundation; either version 2 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + package PciIds::Startup; use strict; use warnings; use base 'Exporter'; #Where are data? -our $directory = '/home/vorner/prog/pciids/'; +our $directory = '/home/pciids/ids/perl/'; our @EXPORT=qw($directory); #Where are the modules? -use lib ( '/home/vorner/prog/pciids/' ); +use lib ( '/home/pciids/ids/perl/' ); 1;