Index: trunk/src_plugins/export_bom/bom.c =================================================================== --- trunk/src_plugins/export_bom/bom.c (revision 34889) +++ trunk/src_plugins/export_bom/bom.c (revision 34890) @@ -233,7 +233,7 @@ bom_filename = options[HA_bomfile].str; if (!bom_filename) - bom_filename = "pcb-out.bom"; + bom_filename = "pcb-rnd-out.bom"; pcb_cam_begin_nolayer(PCB, &cam, NULL, options[HA_cam].str, &bom_filename); Index: trunk/src_plugins/export_dsn/dsn.c =================================================================== --- trunk/src_plugins/export_dsn/dsn.c (revision 34889) +++ trunk/src_plugins/export_dsn/dsn.c (revision 34890) @@ -580,7 +580,7 @@ } dsn_filename = options[HA_dsnfile].str; if (!dsn_filename) - dsn_filename = "pcb-out.dsn"; + dsn_filename = "pcb-rnd-out.dsn"; pcb_cam_begin_nolayer(PCB, &cam, NULL, options[HA_cam].str, &dsn_filename); Index: trunk/src_plugins/export_excellon/excellon.c =================================================================== --- trunk/src_plugins/export_excellon/excellon.c (revision 34889) +++ trunk/src_plugins/export_excellon/excellon.c (revision 34890) @@ -235,7 +235,7 @@ fnbase = options[HA_excellonfile].str; if (!fnbase) - fnbase = "pcb-out"; + fnbase = "pcb-rnd-out"; i = strlen(fnbase); filename = (char *) realloc(filename, i + SUFF_LEN); Index: trunk/src_plugins/export_gerber/gerber.c =================================================================== --- trunk/src_plugins/export_gerber/gerber.c (revision 34889) +++ trunk/src_plugins/export_gerber/gerber.c (revision 34890) @@ -342,7 +342,7 @@ fnbase = options[HA_gerberfile].str; if (!fnbase) - fnbase = "pcb-out"; + fnbase = "pcb-rnd-out"; verbose = options[HA_verbose].lng || rnd_conf.rc.verbose; all_layers = options[HA_all_layers].lng; Index: trunk/src_plugins/export_png/png.c =================================================================== --- trunk/src_plugins/export_png/png.c (revision 34889) +++ trunk/src_plugins/export_png/png.c (revision 34890) @@ -628,7 +628,7 @@ filename = options[HA_pngfile].str; if (!filename) - filename = "pcb-out.png"; + filename = "pcb-rnd-out.png"; /* figure out width and height of the board */ if (options[HA_only_visible].lng) { Index: trunk/src_plugins/export_ps/eps.c =================================================================== --- trunk/src_plugins/export_ps/eps.c (revision 34889) +++ trunk/src_plugins/export_ps/eps.c (revision 34890) @@ -326,7 +326,7 @@ filename = options[HA_psfile].str; if (!filename) - filename = "pcb-out.eps"; + filename = "pcb-rnd-out.eps"; if (eps_cam.fn_template == NULL) { f = rnd_fopen_askovr(&PCB->hidlib, eps_cam.active ? eps_cam.fn : filename, "w", NULL); Index: trunk/src_plugins/export_ps/ps.c =================================================================== --- trunk/src_plugins/export_ps/ps.c (revision 34889) +++ trunk/src_plugins/export_ps/ps.c (revision 34890) @@ -621,7 +621,7 @@ global.filename = options[HA_psfile].str; if (!global.filename) - global.filename = "pcb-out.ps"; + global.filename = "pcb-rnd-out.ps"; /* cam mode shall result in a single file, no matter what other attributes say */ if (ps_cam.active) { Index: trunk/src_plugins/export_xy/xy.c =================================================================== --- trunk/src_plugins/export_xy/xy.c (revision 34889) +++ trunk/src_plugins/export_xy/xy.c (revision 34890) @@ -810,7 +810,7 @@ xy_filename = options[HA_xyfile].str; if (!xy_filename) - xy_filename = "pcb-out.xy"; + xy_filename = "pcb-rnd-out.xy"; pcb_cam_begin_nolayer(PCB, &cam, NULL, options[HA_cam].str, &xy_filename);