Calculated the correct default value for pmdir based on the local Perl installation.
This commit is contained in:
parent
d879bde678
commit
1507d1a055
2 changed files with 6 additions and 3 deletions
1
NEWS
1
NEWS
|
@ -2,6 +2,7 @@ News file for Stow.
|
|||
|
||||
* Changes in version 2.1.1
|
||||
** Fixed bug where ./configure --with-pmdir=X was ineffectual.
|
||||
** Calculated the correct default value for pmdir based on the local Perl installation.
|
||||
* Changes in version 2.1.0
|
||||
** Major refactoring of code into separate Stow and Stow::Util Perl modules.
|
||||
** Added support for ignore list files.
|
||||
|
|
|
@ -21,9 +21,11 @@ fi
|
|||
|
||||
AC_ARG_WITH(
|
||||
pmdir,
|
||||
[ --with-pmdir=DIR perl modules are in DIR [[LIBDIR/perl5]]],
|
||||
[PMDIR=${withval}], [PMDIR=${libdir}/perl5]
|
||||
)
|
||||
[ --with-pmdir=DIR Perl modules are in DIR [[LIBDIR/perl5]]],
|
||||
[PMDIR=${withval}],
|
||||
[eval `$PERL -V:installsitelib -V:siteprefix`
|
||||
PMDIR='${prefix}'/"${installsitelib#$siteprefix/}"])
|
||||
AC_CONFIG_COMMANDS_POST([eval echo "Perl modules will be installed to $PMDIR"])
|
||||
AC_SUBST([PMDIR])
|
||||
|
||||
AC_CONFIG_FILES([Makefile])
|
||||
|
|
Loading…
Reference in a new issue