Changeset 509


Ignore:
Timestamp:
May 23, 2007 3:47:24 PM (6 years ago)
Author:
dkg
Message:

OS X maintenance: install fonts directly into /Library/Fonts instead of a subdir. font caching programs do not seem to know to descend subdirs, despite the documentation.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/osxtools/dmginstall

    r508 r509  
    4646    if [ -r "$TTF" ] ; then 
    4747        echo "installing $TTF" 
    48         sudo mkdir -p /Library/Fonts/Urban 
    49         sudo cp "$TTF" /Library/Fonts/Urban 
    50         TARGFILE=/Library/Fonts/Urban/"$(basename "$TTF")" 
     48        sudo mkdir -p /Library/Fonts 
     49        sudo cp "$TTF" /Library/Fonts 
     50        TARGFILE=/Library/Fonts/"$(basename "$TTF")" 
    5151        sudo chmod a+r "$TARGFILE" 
    5252        INSTALLED=yes 
Note: See TracChangeset for help on using the changeset viewer.