bugfix [#23495] unable to pack file, source path not found: "<builtin>"

This commit is contained in:
Campbell Barton 2010-08-25 08:57:42 +00:00
parent 81d5e4f8df
commit 134e2f001c

@ -220,7 +220,7 @@ void packAll(Main *bmain, ReportList *reports)
ima->packedfile = newPackedFile(reports, ima->name);
for(vf=bmain->vfont.first; vf; vf=vf->id.next)
if(vf->packedfile == NULL && vf->id.lib==NULL)
if(vf->packedfile == NULL && vf->id.lib==NULL && strcmp(vf->name, "<builtin>") != 0)
vf->packedfile = newPackedFile(reports, vf->name);
for(sound=bmain->sound.first; sound; sound=sound->id.next)