Skip to content
Snippets Groups Projects
Commit 5fc49420 authored by Henrik (Grubba) Grubbström's avatar Henrik (Grubba) Grubbström
Browse files

mkpackage: Reorder the contents somewhat.

Make sure that the $EXTRA_PLATFORM_TEST file (if any) comes after
the install script in the generated tar file, so that it becomes
part of $CONTENTS when the installer is executed.

Fixes issue where the $EXTRA_PLATFORM_TEST file wasn't extracted.

Fixes [bug 7740] some more.
parent c3741c6e
No related branches found
No related tags found
No related merge requests found
......@@ -276,12 +276,12 @@ class Package
bootstrap,
setup_filename }))->wait();
packages = ({ install_filename, pike_filename }) + packages;
if (extra_platform_test) {
packages = ({ extra_platform_test }) + packages;
}
packages = ({ install_filename, pike_filename }) + packages;
string original_wd = getcwd();
foreach(packages, string package)
{
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment