To comment on the following update, log in, then open the issue: http://www.openoffice.org/issues/show_bug.cgi?id=51391
------- Additional comments from [EMAIL PROTECTED] Tue Jul 12 05:55:23 -0700 2005 ------- You're right - it is not only the two lines in the makefile that cause the problem, but the problem remains: The files instsetoo_native/inc_openoffice/windows/msi_templates/Binary/Image.bmp and instsetoo_native/inc_ooolangpack/windows/msi_templates/Binary/Image.bmp get replaced by /nologoinstall.bmp during the build of instsetoo_native. The problem is that before the replacement, the whole stuff gets copied to the $(MISC) directory with "cp -ua": from the buildlog: cp -ua ../inc_openoffice/windows/msi_templates ../unxlngi4.pro/misc/openoffice cp -ua ../inc_ooolangpack/windows/msi_templates ../unxlngi4.pro/misc/ooolangpack cp -f ../res/nologoinstall.bmp ../unxlngi4.pro/misc/openoffice/msi_templates/Binary/Image.bmp cp -f ../res/nologoinstall.bmp ../unxlngi4.pro/misc/ooolangpack/msi_templates/Binary/Image.bmp thus the statement that replaces the images really works on the misc-dir, however the misc-dir contains the symlink as well. (remember, I use a shadow-tree to build OOo) ######################### The possible solutions: * do not use "cp -a" (-a includes -d (no-dereference) and thus copies the links, not the targets) cp -pR should work as well. you probably only need "cp -pr" * use "cp --remove-destination" or do a rm before copying the nologo-variant. (--remove-destination probably is a gnu-extension, don't know) --------------------------------------------------------------------- Please do not reply to this automatically generated notification from Issue Tracker. Please log onto the website and enter your comments. http://qa.openoffice.org/issue_handling/project_issues.html#notification --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
