in reply to Newbie Adding Module to Perl
Then when you use the module in your code, make sure Perl knows to look in that directory to find the module:perl Makefile.PL PREFIX=/path-to/your-dir LIB=/path-to/your-dir
-- vek --#!/usr/bin/perl -w use lib '/path-to/your-dir'; use Sys::AlarmCall;
|
|---|