summaryrefslogtreecommitdiff
path: root/org.handhelds.familiar/packages/ipkg-utils/files/dangling-symlinks.patch
blob: a73c6ea9621cb3e7915a517fb9c0c563f517b28b (plain)
1
2
3
4
5
6
7
8
9
10
11
--- bin/ipkg-build.orig	2006-08-16 13:08:22.000000000 +0200
+++ bin/ipkg-build	2006-08-16 13:08:25.000000000 +0200
@@ -141,7 +141,7 @@
 
 	if [ -f $CONTROL/conffiles ]; then
 		for cf in `cat $CONTROL/conffiles`; do
-			if [ ! -f ./$cf ]; then
+			if [ ! -L ./$cf -a ! -f ./$cf ]; then
 				echo "*** Error: $CONTROL/conffiles mentions conffile $cf which does not exist" >&2
 				PKG_ERROR=1
 			fi