Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/monodevelop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog7
-rw-r--r--contrib/log4net/Makefile.am2
2 files changed, 8 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 3fe2afa0b5..b9fa672d5a 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2007-09-27 Raja R Harinath <rharinath@novell.com>
+
+ * contrib/log4net/Makefile.am (LOG4NET_CSFILES): Don't prepend
+ $(scrdir), 'find' already does it for us. Append a '/' after the
+ directory name to allow using symlinks (some svn wrappers don't
+ support svn:externals).
+
2007-09-26 Michael Hutchinson <mhutchinson@novell.com>
* configure.in: Another Mozilla detection tweak: don't ignore pkg-config
diff --git a/contrib/log4net/Makefile.am b/contrib/log4net/Makefile.am
index a3b822e060..b201827ce3 100644
--- a/contrib/log4net/Makefile.am
+++ b/contrib/log4net/Makefile.am
@@ -5,7 +5,7 @@ all: $(LOG4NET)
LOG4NET_DLL=log4net.dll
LOG4NET = $(BINDIR)/$(LOG4NET_DLL)
LOG4NET_DIR=$(srcdir)/src
-LOG4NET_CSFILES=$(addprefix $(srcdir)/, $(shell find $(LOG4NET_DIR) -name *.cs))
+LOG4NET_CSFILES=$(shell find $(LOG4NET_DIR)/ -name *.cs)
LOG4NET_DIST= $(LOG4NET_CSFILES)
LOG4NET_REFS = \
/r:System \