mirror of the now-defunct rocklinux.org
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

20 lines
705 B

diff -Naur man-pages-1.70.orig/Makefile man-pages-1.70/Makefile
--- man-pages-1.70.orig/Makefile 2004-06-24 18:49:38.000000000 +0100
+++ man-pages-1.70/Makefile 2004-12-20 15:59:05.000000000 +0000
@@ -16,11 +16,12 @@
screen:
-mkdir not_installed
+ find /var/adm/flists ! -name "man-pages*" | \
+ xargs grep -hE "/man/man([1-9])/.*\.\1$$" | \
+ awk '{print $$2}' > not_installed/.MANCACHE; \
for i in man?/*; do \
- if [ $(MANDIR)/"$$i" -nt "$$i" ]; then \
- cmp -s $(MANDIR)/"$$i" "$$i" > /dev/null 2>&1; \
- if [ "$$?" != 0 ]; then mv "$$i" not_installed; fi; \
- fi; \
+ grep -Fq "/$$i" not_installed/.MANCACHE; \
+ if [ "$$?" == 0 ]; then mv "$$i" not_installed; fi; \
done
remove: