[build_extlibs.prl: correctly check the return status of getstore
Roman Cheplyaka <roma@ro-che.info>**20120218071732
 Ignore-this: 20165069fc8aaa1528969216f7c51435
] hunk ./utils/build_extlibs.prl 53
-        getstore($url, "$tmpdir/$name-$version.tar.gz") or die "$!: $url";
+        my $rc = getstore($url, "$tmpdir/$name-$version.tar.gz");
+        if (is_error $rc) { die "$url: $rc" } ;