Skip to content

Commit

Permalink
Fixed perl-shared default path
Browse files Browse the repository at this point in the history
This is only used if you use makemaker dirrectly in the perl-shared directory.
  • Loading branch information
nirgal authored and oetiker committed Nov 10, 2015
1 parent 4d542bc commit 22d7a8e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions bindings/perl-shared/Makefile.PL
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@ if (($Config{'osname'} eq 'MSWin32' && $ENV{'OSTYPE'} eq '')) {
) : ()
);
}else{
my $TOP_SRCDIR = $ENV{'ABS_TOP_SRCDIR'} || '../../..';
my $TOP_BUILDDIR = $ENV{'ABS_TOP_BUILDDIR'} || '../../..';
my $TOP_SRCDIR = $ENV{'ABS_TOP_SRCDIR'} || '../..';
my $TOP_BUILDDIR = $ENV{'ABS_TOP_BUILDDIR'} || '../..';
my $SRCDIR = $ENV{'ABS_SRCDIR'} || '.';
# if the last argument when calling Makefile.PL is RPATH=/... and ... is the
# path to librrd.so then the Makefile will be written such that RRDs.so knows
Expand Down

0 comments on commit 22d7a8e

Please sign in to comment.