From 145b55ed74d2f0fb22eda974d78ed60b4e2cc1d0 Mon Sep 17 00:00:00 2001
From: Anthony Minessale <anthony.minessale@gmail.com>
Date: Sat, 4 Oct 2008 13:48:57 +0000
Subject: [PATCH] fix whitespace

git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@9832 d0543943-73ff-0310-b7d9-9358b9ac24b2
---
 src/mod/languages/mod_managed/managed/Makefile | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/src/mod/languages/mod_managed/managed/Makefile b/src/mod/languages/mod_managed/managed/Makefile
index a368f5aaa5..9d8807d77c 100644
--- a/src/mod/languages/mod_managed/managed/Makefile
+++ b/src/mod/languages/mod_managed/managed/Makefile
@@ -1,13 +1,13 @@
 all: mod_managed_lib.dll
 
 clean:
-       rm -fr mod_managed_lib.dll
+	rm -fr mod_managed_lib.dll
 
 mod_managed_lib.dll: Loader.cs ManagedSession.cs ApiFunction.cs AppFunction.cs Extensions.cs Log.cs Demo.cs swig.cs
-       gmcs -target:library -out:mod_managed_lib.dll -d:DEBUG Loader.cs ManagedSession.cs ApiFunction.cs AppFunction.cs Extensions.cs Log.cs Demo.cs swig.cs
+	gmcs -target:library -out:mod_managed_lib.dll -d:DEBUG Loader.cs ManagedSession.cs ApiFunction.cs AppFunction.cs Extensions.cs Log.cs Demo.cs swig.cs
 
 install: mod_managed_lib.dll
-       install mod_managed_lib.dll $(MODINSTDIR)
+	install mod_managed_lib.dll $(MODINSTDIR)
 
 uninstall:
 	rm -f $(MODINSTDIR)/mod_managed_lib.dll