
mythtv at cvs
Oct 11, 2008, 1:27 AM
Post #1 of 2
(107 views)
Permalink
|
|
Ticket #5804: One hardcoded reference to buikd dir left in win32 build script
|
|
#5804: One hardcoded reference to buikd dir left in win32 build script ---------------------------------+------------------------------------------ Reporter: jonathan[at]snetram.nl | Owner: danielk Type: defect | Status: new Priority: minor | Milestone: unknown Component: windows | Version: head Severity: medium | Mlocked: 0 ---------------------------------+------------------------------------------ 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! ' ], ; -- Ticket URL: <http://svn.mythtv.org/trac/ticket/5804> MythTV <http://www.mythtv.org/> MythTV _______________________________________________ mythtv-commits mailing list mythtv-commits[at]mythtv.org http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-commits
|