Index: eps.c =================================================================== --- eps.c (revision 29425) +++ eps.c (revision 29426) @@ -343,6 +343,8 @@ fclose(f); + if (!eps_cam.active) eps_cam.okempty_content = 1; /* never warn in direct export */ + if (pcb_cam_end(&eps_cam) == 0) { if (!eps_cam.okempty_group) pcb_message(PCB_MSG_ERROR, "eps cam export for '%s' failed to produce any content (layer group missing)\n", options[HA_cam].str); Index: ps.c =================================================================== --- ps.c (revision 29425) +++ ps.c (revision 29426) @@ -657,6 +657,8 @@ fclose(fh); } + if (!ps_cam.active) ps_cam.okempty_content = 1; /* never warn in direct export */ + if (pcb_cam_end(&ps_cam) == 0) { if (!ps_cam.okempty_group) pcb_message(PCB_MSG_ERROR, "ps cam export for '%s' failed to produce any content (layer group missing)\n", options[HA_cam].str);