카테고리 없음2015. 3. 23. 10:34

출처: http://askubuntu.com/questions/266013/fontconfig-warning-msfonts-rules-conf-line-23


Fontconfig warning: "msfonts-rules.conf", line 23: Having multiple values in <test> isn't supported and may not work as expected

    while executing


와 같이 경고 메세지가 뜰 때는,

/etc/fonts/msfonts-rules.conf file 를 열어

아래와 같은 섹션을 찾은 후:

<match target="font">
        <test name="family">
            <string>Andale mono</string>
            <string>Arial</string>
            ...
</match>

Andale Mono라는 tag를 각각의 tag로 감싸지도록 수정하면 된다.

<match target="font">
    <test name="family">
        <string>Andale Mono</string>
    </test>
    <test name="family">
        <string>Arial</string>
    </test>
    ...
</match>


Posted by code cat