summaryrefslogtreecommitdiff
path: root/util/imake/cleanlinks
diff options
context:
space:
mode:
Diffstat (limited to 'util/imake/cleanlinks')
-rw-r--r--util/imake/cleanlinks26
1 files changed, 0 insertions, 26 deletions
diff --git a/util/imake/cleanlinks b/util/imake/cleanlinks
deleted file mode 100644
index 3024d8a64..000000000
--- a/util/imake/cleanlinks
+++ /dev/null
@@ -1,26 +0,0 @@
-#!/bin/sh
-#
-# Copyright © 2000, 2003 by The XFree86 Project, Inc
-#
-# Remove dangling symlinks and empty directories from a shadow link tree
-# (created with lndir).
-#
-# Author: David Dawes <dawes@xfree86.org>
-#
-
-find . -type l -print |
-(
- read i
- while [ X"$i" != X ]; do
- if [ ! -f "$i" ]; then
- echo $i is a dangling symlink, removing
- rm -f "$i"
- fi
- read i
- done
-)
-
-echo Removing empty directories ...
-#find . -type d -depth -print | xargs rmdir > /dev/null 2>&1
-find . -depth -type d -empty -print -exec rmdir {} \;
-exit 0