[Pkg-mono-svn-commits] rev 1510 - mcs/trunk/debian

Mirco Bauer meebey-guest@costa.debian.org
Sun, 30 Jan 2005 21:52:42 +0100


Author: meebey-guest
Date: 2005-01-30 21:52:42 +0100 (Sun, 30 Jan 2005)
New Revision: 1510

Modified:
   mcs/trunk/debian/rules
Log:
- erm, find doesn't like symlinks.



Modified: mcs/trunk/debian/rules
===================================================================
--- mcs/trunk/debian/rules	2005-01-30 20:43:04 UTC (rev 1509)
+++ mcs/trunk/debian/rules	2005-01-30 20:52:42 UTC (rev 1510)
@@ -72,9 +72,9 @@
 	# MonoConventions: create cli-wrapper symlinks for the .exes
 	for x in $(CURDIR)/debian/*/usr/bin ; do cd $$x ; for y in `find ../share/dotnet -name '*.exe' 2>/dev/null` ; do ln -sf cli-wrapper `basename $$y .exe` ; done ; done
 	# MonoConventions: removing executable flag from .dlls
-	find $(CURDIR)/debian -type f -name "*.dll" -or name "*.cs" | xargs chmod -x
+	find $(CURDIR)/debian -follow -type f -name "*.dll" -or -name "*.cs" | xargs chmod -x
 	# MonoConventions: adding executable flag to .exes
-	find $(CURDIR)/debian -type f -name "*.exe" | xargs chmod +x
+	find $(CURDIR)/debian -follow -type f -name "*.exe" | xargs chmod +x
 	# missing sqlite dll map
 	DIR=$$(echo $(CURDIR)/debian/mono-assemblies-base/usr/share/dotnet/mono/gac/Mono.Data.SqliteClient/1.0.*); \
 	  echo '<dllmap dll="sqlite" target="libsqlite.so.0" />' > $$DIR/Mono.Data.SqliteClient.dll.config