Merge pull request #30 from aspiers/chkstow-stow-dir
make chkstow honour $STOW_DIR environment variable
This commit is contained in:
commit
74defd4812
2 changed files with 2 additions and 1 deletions
1
THANKS
1
THANKS
|
@ -31,6 +31,7 @@ Kristoffer Haugsbakk
|
|||
Hongyi Zhao
|
||||
Jean Louis
|
||||
Daniel Shahaf
|
||||
Matan Nassau
|
||||
|
||||
Email addresses of new contributors are no longer being added by default
|
||||
for privacy reasons; however please contact the maintainer if you are
|
||||
|
|
|
@ -8,7 +8,7 @@ require 5.006_001;
|
|||
use File::Find;
|
||||
use Getopt::Long;
|
||||
|
||||
my $DEFAULT_TARGET = '/usr/local/';
|
||||
my $DEFAULT_TARGET = $ENV{STOW_DIR} || '/usr/local/';
|
||||
|
||||
our $Wanted = \&bad_links;
|
||||
our %Package = ();
|
||||
|
|
Loading…
Reference in a new issue