|
Description
|
In the directories in the X build tree where fonts are converted from *.bdf to *.pcf.Z,
"make clean" does not remove the generated *.pcf.Z files, so if anything goes wrong when
building the fonts, they have to be manually removed in order for them to be rebuilt.
The X.Org Imake rules fixed this by adding the following to the MakeFonts() rule:
clean:: @@\
RemoveFiles(*.pcf *.pcf.Z *.pcf.gz)
We should integrate this to our Imake configs as well.
|