Changes between Initial Version and Version 1 of Ticket #36422, comment 1


Ignore:
Timestamp:
Oct 2, 2012, 2:19:40 PM (12 years ago)
Author:
nerdling (Jeremy Lavergne)
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #36422, comment 1

    initial v1  
    1 It looks like ${worksrcpath}/strings/Makefile doesn't account for a `destroot`, instead installing directly to `prefix`. Should `prefix` simply get changed to `${destroot}${prefix}` in that Makefile?
     1It looks like ${worksrcpath}/strings/Makefile doesn't account for a `destroot`, instead installing directly to `prefix`. This simple fix got the package to install for me:
     2
     3{{{
     4post-configure {
     5    reinplace "s|prefix = ${prefix}|prefix = ${destroot}${prefix}|g" ${worksrcpath}/strings/Makefile
     6}
     7}}}
     8
     9The files previously installed and not registered will need to be addressed, however. Should this be done by deleting the files in `pre-activate`?