# HG changeset patch # User Mark Doliner # Date 1130100182 0 # Node ID d8f0028121867fec46da8ee0017b18b9f4813190 # Parent c0fca40fd938262f333c0321012f44971cc1b224 [gaim-migrate @ 14052] This should fix make disting with the mono plugin enabled. I believe "SOURCES" is some sort of reserved variable. committer: Tailor Script diff -r c0fca40fd938 -r d8f002812186 plugins/mono/api/Makefile.am --- a/plugins/mono/api/Makefile.am Sun Oct 23 20:39:00 2005 +0000 +++ b/plugins/mono/api/Makefile.am Sun Oct 23 20:43:02 2005 +0000 @@ -1,4 +1,4 @@ -SOURCES=\ +MONOSOURCES = \ GaimPlugin.cs \ Debug.cs \ BuddyList.cs \ @@ -10,8 +10,8 @@ all: $(TARGET) -$(TARGET): $(SOURCES) - mcs -t:library -out:$(TARGET) $(SOURCES) +$(TARGET): $(MONOSOURCES) + mcs -t:library -out:$(TARGET) $(MONOSOURCES) .PHONY: install clean