diff -urN buildscripts/pfx2ttf.fontforge buildscripts/pfx2ttf.fontforge
--- buildscripts/pfx2ttf.fontforge	2006-01-30 10:51:44.000000000 +0100
+++ buildscripts/pfx2ttf.fontforge	2006-02-01 01:42:18.000000000 +0100
@@ -1,10 +1,16 @@
 #!@FONTFORGE@
 
 Open($1);
-MergeKern($2)
+MergeKern($2);
 
 # Remove the No. glyph - for want of better FF fix.  
-Select("afii61352")
-Cut();
+err = SelectIf("afii61352");
+if ( err > 0 )
+	Cut();
+elseif ( err == 0 )
+	Print("Could not find \"numero\" glyph");
+elseif ( err < 0 )
+	Print("An error occurred while searching for the \"numero\" glyph");
+endif
 Generate($3 + $fontname + ".ttf");
 

