diff options
Diffstat (limited to 'scripts/create-recipe')
-rwxr-xr-x | scripts/create-recipe | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/scripts/create-recipe b/scripts/create-recipe index 1b10e1b591..5613e92cb9 100755 --- a/scripts/create-recipe +++ b/scripts/create-recipe | |||
@@ -1918,9 +1918,9 @@ if ( -e "$dir/setup.py" ) { | |||
1918 | if ($recurse_python == 1) { | 1918 | if ($recurse_python == 1) { |
1919 | foreach (@rawpythondeps) { | 1919 | foreach (@rawpythondeps) { |
1920 | my $ptempdir = tempdir(); | 1920 | my $ptempdir = tempdir(); |
1921 | $purl = `easy_install -eb $ptempdir "$_" 2>/dev/null`; | 1921 | $purl = `easy_install -aeb $ptempdir "$_" 2>/dev/null`; |
1922 | $purl =~ s/#.*//; | 1922 | $purl =~ s/#.*//g; |
1923 | @purllist = $purl =~ m/Downloading (http:\/\/.*\n)/g; | 1923 | @purllist = $purl =~ m/Downloading (.*:\/\/.*\n)/g; |
1924 | chomp(@purllist); | 1924 | chomp(@purllist); |
1925 | 1925 | ||
1926 | # Remove empty lines | 1926 | # Remove empty lines |