Skip to content

Commit

Permalink
Merge pull request #319 from zebra-lucky/fix_buildsystem_dh_virtualen…
Browse files Browse the repository at this point in the history
…v_install_prefix

fix typo in Buildsystem dh_virtualenv.pm for DH_VIRTUALENV_INSTALL_SUFFIX
  • Loading branch information
nailor committed Dec 31, 2020
2 parents 609bb49 + 69c371d commit d81bcb6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/Debian/Debhelper/Buildsystem/dh_virtualenv.pm
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ sub install {

if (defined $ENV{DH_VIRTUALENV_INSTALL_SUFFIX}) {
$new_python = "$prefix/" . $ENV{DH_VIRTUALENV_INSTALL_SUFFIX} . "/bin/python";
my $curdir = "$destdir$prefix" . $ENV{DH_VIRTUALENV_INSTALL_SUFFIX} . "/bin/*";
my $curdir = "$destdir$prefix/" . $ENV{DH_VIRTUALENV_INSTALL_SUFFIX} . "/bin/*";
@binaries = glob($curdir);
} else {
$new_python = "$prefix/$sourcepackage/bin/python";
Expand Down

0 comments on commit d81bcb6

Please sign in to comment.