diff --git a/general/graphlib/giflib.xml b/general/graphlib/giflib.xml
index 4fafa2c28f..5099217ab0 100644
--- a/general/graphlib/giflib.xml
+++ b/general/graphlib/giflib.xml
@@ -104,6 +104,8 @@
make PREFIX=/usr install &&
+rm -fv /usr/lib/libgif.a &&
+
find doc \( -name Makefile\* -o -name \*.1 \
-o -name \*.xml \) -exec rm -v {} \; &&
@@ -122,6 +124,11 @@ cp -v -R doc/* /usr/share/doc/giflib-&giflib-version;
Command Explanations
+
+ rm -fv /usr/lib/libgif.a: This command removes a
+ static library which is not used by any BLFS package.
+
+
find doc ... -exec rm -v {} \;: This command removes
Makefiles, man and xml files from the documentation