diff --git a/CHANGES b/CHANGES
index 761cca021ed938d253e33b90b81b6e169c514704..afd2490c112ddcb7c3175b24d429b428b19d41d2 100644
--- a/CHANGES
+++ b/CHANGES
@@ -1,7 +1,9 @@
 CHANGES IN FLTK 1.1.0b7
 
-	- Mac Cursor Shapes added
 	- More documentation updates...
+	- "make uninstall" didn't uninstall the static OpenGL
+	  widget library.
+	- Mac cursor shapes added...
 	- Fl_Text_Display would lockup when all text was
 	  deleted; for example, when running the editor
 	  demo, you couldn't load a second file.
diff --git a/src/Makefile b/src/Makefile
index 2b3d3635bd49847ade3a4ea95acabd6801c9a40b..4592154a6fc2fdd1dbb556071894b8644df5792f 100644
--- a/src/Makefile
+++ b/src/Makefile
@@ -1,5 +1,5 @@
 #
-# "$Id: Makefile,v 1.18.2.14.2.25 2001/12/09 20:26:24 easysw Exp $"
+# "$Id: Makefile,v 1.18.2.14.2.26 2001/12/10 14:46:04 easysw Exp $"
 #
 # Library makefile for the Fast Light Tool Kit (FLTK).
 #
@@ -331,6 +331,9 @@ uninstall:
 	if test x$(DSONAME) = xlibfltk_s.a; then\
 		rm -f $(libdir)/libfltk_s.a;\
 	fi
+	if test x$(GLLIBNAME) != x; then\
+		rm -f $(libdir)/$(GLLIBNAME);\
+	fi
 	if test x$(GLDSONAME) = xlibfltk_gl.so.1.1; then\
 		rm -f $(libdir)/libfltk_gl.so*;\
 	fi
@@ -343,5 +346,5 @@ uninstall:
 
 
 #
-# End of "$Id: Makefile,v 1.18.2.14.2.25 2001/12/09 20:26:24 easysw Exp $".
+# End of "$Id: Makefile,v 1.18.2.14.2.26 2001/12/10 14:46:04 easysw Exp $".
 #