Bug 3563 - binpath option misbehaves
Status: RESOLVED FIXED
Alias: None
Product: Loki Setup
Classification: Unclassified
Component: General
Version: unspecified
Hardware: PC Linux
: P3 normal
Assignee: St
QA Contact:
URL:
Depends on:
Blocks:
 
Reported: 2008-03-03 13:13 EST by kratz00
Modified: 2008-04-11 19:14:46 EDT
0 users

See Also:



Description kratz00 2008-03-03 13:13:57 EST
From README.xml

 binpath    Specifies an optional directory from which the binaries will be pulled,
            instead of the default "bin/<arch>/<libc>" directory.

Snippet of my setup.xml

    <binary binpath="bin">
     test.bin
    </binary>

Instead of copying test.bin, it's trying to copy bin, which is a directory, and fails.

So I ran the setup binary with -v 0

loki_setup: find 'bin'

Changing setup.xml so it looks like:

    <binary arch="any" libc="any">
      test.bin
    </binary>

The output looks like this now:

loki_setup: find 'bin/Linux/x86/glibc-2.1/test.bin'
loki_setup: find 'bin/Linux/x86/test.bin'
loki_setup: find 'bin/x86/glibc-2.1/test.bin'
loki_setup: find 'bin/x86/test.bin'

This debug output is from copy.c line 793

If specifying binpath, this output only contains the path and not the binary.

So I tried this setup.xml

    <binary binpath="bin/test.bin">
     test.bin2
    </binary>

The output this time was:

loki_setup: find 'bin/test.bin'

So test.bin was installed instead of test.bin2.
I think the problem is line 770 in copy.c

changing this line to:

snprintf(binarylocations[0], PATH_MAX, "%s/%s", binpath, final);

should do the job correct.
Comment 1 St 2008-03-12 01:24:14 EDT
Are you referring to the current CVS snapshot?
Comment 2 kratz00 2008-03-12 14:23:24 EDT
Yes, sorry forget to mention this.
Comment 3 St 2008-04-11 19:14:46 EDT
Fixed in CVS.