Opened 15 years ago

Closed 15 years ago

#5804 closed defect (fixed)

One hardcoded reference to buikd dir left in win32 build script

Reported by: jonathan@… Owned by: danielk
Priority: minor Milestone: unknown
Component: windows Version: head
Severity: medium Keywords:
Cc: Ticket locked: no

Description

In the win32 build script one hardcoded refference to the build dir is left in:

# install fixup for redundant themes folders/folders/folders: [ always => ,

shell => [ 'cd /c/mythtv/build/share/mythtv/themes',

'for f in *; do mv $f/$f/* ./$f; done' ],

comment => 'relocate badly installed THEMES! ' ],

;

which should be:

# install fixup for redundant themes folders/folders/folders: [ always => ,

shell => [ "cd $build/share/mythtv/themes",

'for f in *; do mv $f/$f/* ./$f; done' ],

comment => 'relocate badly installed THEMES! ' ],

;

Attachments (1)

win32-packager.pl.patch (494 bytes) - added by jonathan@… 15 years ago.
Patch applied against current HEAD (r18670)

Download all attachments as: .zip

Change History (2)

Changed 15 years ago by jonathan@…

Attachment: win32-packager.pl.patch added

Patch applied against current HEAD (r18670)

comment:1 Changed 15 years ago by Nigel

Resolution: fixed
Status: newclosed

(In [18677]) Change a hard-coded path. Patch from jonathan at snetram dot nl. Closes #5804. Note that there are still many other paths in there that should be changed (e.g. every one of $mythtv.'build', $dosmythtv.'build' or $unixmythtv.'build')

Note: See TracTickets for help on using tickets.