[Bug 12726] New: wineprefixcreate fails to add fonts
http://bugs.winehq.org/show_bug.cgi?id=12726 Summary: wineprefixcreate fails to add fonts Product: WineHQ Apps Database Version: unspecified Platform: Other OS/Version: other Status: UNCONFIRMED Severity: minor Priority: P2 Component: appdb-unknown AssignedTo: wine-bugs(a)winehq.org ReportedBy: nospam(a)thenerdshow.com wineprefixcreate fails to add fonts on new system $ wineprefixcreate --prefix foo cp: target `/home/hellork/foo/dosdevices/c:/windows/fonts/' is not a directory Reason: fonts dir is created as Fonts instead of fonts. Note incorrect case. cp is case-sensitive and so fails to copy the fonts. -- Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email Do not reply to this email, post in Bugzilla using the above URL to reply. ------- You are receiving this mail because: ------- You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=12726 Henry <nospam(a)thenerdshow.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Component|appdb-unknown |programs OS/Version|other |Linux Product|WineHQ Apps Database |Wine Platform|Other |All Version|unspecified |CVS/GIT --- Comment #1 from Henry <nospam(a)thenerdshow.com> 2008-04-21 18:23:55 --- Wine version 0.9.60 (git 4/21/08) Accidentally put wrong target in bug. Fixing... -- Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email Do not reply to this email, post in Bugzilla using the above URL to reply. ------- You are receiving this mail because: ------- You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=12726 Henry <nospam(a)thenerdshow.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Difficulty|--- |Minutes Keywords| |regression -- Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email Do not reply to this email, post in Bugzilla using the above URL to reply. ------- You are receiving this mail because: ------- You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=12726 Lei Zhang <thestig(a)google.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Component|programs |tools --- Comment #2 from Lei Zhang <thestig(a)google.com> 2008-04-21 19:00:52 --- I don't see any cp commands in wineprefixcreate that would do this. Did you use a copy of Wine from your Linux distro? If so, what distro are you using? You probably need to take it up with them since they may have modified wineprefixcreate. -- Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email Do not reply to this email, post in Bugzilla using the above URL to reply. ------- You are receiving this mail because: ------- You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=12726 Dmitry Timoshkov <dmitry(a)codeweavers.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |RESOLVED Difficulty|Minutes |--- Keywords|regression | Resolution| |INVALID --- Comment #3 from Dmitry Timoshkov <dmitry(a)codeweavers.com> 2008-04-21 22:37:39 --- wineprefixcreate in WineHQ tree doesn't copy fonts. -- Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email Do not reply to this email, post in Bugzilla using the above URL to reply. ------- You are receiving this mail because: ------- You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=12726 --- Comment #4 from Henry <nospam(a)thenerdshow.com> 2008-04-23 02:11:57 --- You're right. It doesn't copy fonts. It makes the fonts directory upper-case now when it used to be lower case, breaking my distro's scripts :) Is it supposed to be UPper Case? If So, I'll Just Leave It Alone. -- Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email Do not reply to this email, post in Bugzilla using the above URL to reply. ------- You are receiving this mail because: ------- You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=12726 Henry <nospam(a)thenerdshow.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Resolution|INVALID |FIXED Summary|wineprefixcreate fails to |wineprefixcreate fails to |add fonts |add fonts directory --- Comment #5 from Henry <nospam(a)thenerdshow.com> 2008-04-23 02:32:53 --- Fixed in CVS. -- Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email Do not reply to this email, post in Bugzilla using the above URL to reply. ------- You are receiving this mail because: ------- You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=12726 Dmitry Timoshkov <dmitry(a)codeweavers.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Resolution|FIXED |INVALID --- Comment #6 from Dmitry Timoshkov <dmitry(a)codeweavers.com> 2008-04-23 03:33:47 --- It's still invalid, since it's not a Wine bug. If your distro fiddles with Wine scripts that's very wrong. -- Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email Do not reply to this email, post in Bugzilla using the above URL to reply. ------- You are receiving this mail because: ------- You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=12726 Dmitry Timoshkov <dmitry(a)codeweavers.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|RESOLVED |CLOSED --- Comment #7 from Dmitry Timoshkov <dmitry(a)codeweavers.com> 2008-04-23 03:34:01 --- Closing invalid. -- Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email Do not reply to this email, post in Bugzilla using the above URL to reply. ------- You are receiving this mail because: ------- You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=12726 Henry <nospam(a)thenerdshow.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Resolution|INVALID |WORKSFORME --- Comment #8 from Henry <nospam(a)thenerdshow.com> 2008-04-23 16:08:15 --- Wineprefixcreate is still not creating a fonts directory. This patch fixes it. --- /usr/bin/wineprefixcreate.orig 2008-04-23 13:04:58.000000000 -0800 +++ /usr/bin/wineprefixcreate 2008-04-23 13:04:39.000000000 -0800 @@ -125,6 +125,7 @@ "${WINELOADER:-$bindir/wine}" wineboot.exe --update # Copy the font files +mkdir "$CROOT/windows/fonts/" cp /usr/share/wine/fonts/* "$CROOT/windows/fonts/" # Wait for the wineserver to finish -- Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email Do not reply to this email, post in Bugzilla using the above URL to reply. ------- You are receiving this mail because: ------- You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=12726 Henry <nospam(a)thenerdshow.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Resolution|WORKSFORME |INVALID --- Comment #9 from Henry <nospam(a)thenerdshow.com> 2008-04-23 16:36:48 --- Ahh they fixed it again today. Wine's git keeps changing on me. I'll just leave this one alone. Sorry, err, nothing happening here :O. -- Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email Do not reply to this email, post in Bugzilla using the above URL to reply. ------- You are receiving this mail because: ------- You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=12726 Austin English <austinenglish(a)gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Version|CVS/GIT |unspecified -- Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email Do not reply to this email, post in Bugzilla using the above URL to reply. ------- You are receiving this mail because: ------- You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=12726 Austin English <austinenglish(a)gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Platform|All |Other --- Comment #10 from Austin English <austinenglish(a)gmail.com> 2012-02-23 15:27:17 CST --- Removing deprecated 'All' Platform. -- Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email Do not reply to this email, post in Bugzilla using the above URL to reply. ------- You are receiving this mail because: ------- You are watching all bug changes.
participants (1)
-
wine-bugs@winehq.org