diff --git a/.gitattributes b/.gitattributes
index f90b6c3f70635097be4430743719deae18e61ebe..9c40b62821880f4815fc0f3880af1f0628b903df 100644
--- a/.gitattributes
+++ b/.gitattributes
@@ -9,6 +9,7 @@
 *.pnm binary
 *.rs binary
 init_nt -text -crlf
+install-welcome binary
 lib -text -crlf
 testfont binary
 
diff --git a/bin/install.pike b/bin/install.pike
index 72e26679703bf6d459412b2db923c61668c91463..f3fa29684bc9452271164a7e98881fc2c25746e5 100644
--- a/bin/install.pike
+++ b/bin/install.pike
@@ -652,7 +652,6 @@ object vbox1;
 object label4;
 object frame1;
 object hbox1;
-object pixmap1;
 object vbox2;
 object label3;
 object table1;
@@ -762,7 +761,7 @@ void begin_wizard(string *argv)
 	       ->set_shadow_type(GTK.SHADOW_IN)
 	       ->set_border_width(11)
 	       ->add(hbox1=GTK.Hbox(0,0)
-		     ->PS(pixmap1=GTK.Pixmap(GDK.Pixmap(Image.GIF.decode(Stdio.read_bytes("/home/hubbe/gfx/pike/Welcome.GIF")))),0,0,0)
+		     ->PS(GTK.Pixmap(GTK.Util.load_image(combine_path(vars->SRCDIR,"install-welcome"))->img),0,0,0)
 		     ->PS(vbox2=GTK.Vbox(0,0),1,1,0)
 		       ),1,1,0)
 	  ->PS(hbuttonbox1=GTK.HbuttonBox()
@@ -1035,6 +1034,7 @@ void do_install()
       to_export+=({master,
 		   combine_path(vars->TMP_BUILDDIR,"master.pike"),
 		   combine_path(vars->SRCDIR,"COPYING"),
+		   combine_path(vars->SRCDIR,"install-welcome"),
 		   combine_path(vars->SRCDIR,"dumpmaster.pike"),
 		   combine_path(vars->SRCDIR,"dumpmodule.pike")
       });
diff --git a/src/install-welcome b/src/install-welcome
new file mode 100644
index 0000000000000000000000000000000000000000..8c43f4b1674a2a6bc2fa41930d58c9bc062bce43
Binary files /dev/null and b/src/install-welcome differ