aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTor Lillqvist <tml@novell.com>2005-06-16 03:47:28 +0800
committerTor Lillqvist <tml@src.gnome.org>2005-06-16 03:47:28 +0800
commit1e2acdd66b8575b1a48a9950f46c061c1613bace (patch)
treea1120ac8099e869b931774426448a9946ec68620
parent51c8df6dbed7521d87044494d2151eaa25950d9e (diff)
downloadgsoc2013-evolution-1e2acdd66b8575b1a48a9950f46c061c1613bace.tar
gsoc2013-evolution-1e2acdd66b8575b1a48a9950f46c061c1613bace.tar.gz
gsoc2013-evolution-1e2acdd66b8575b1a48a9950f46c061c1613bace.tar.bz2
gsoc2013-evolution-1e2acdd66b8575b1a48a9950f46c061c1613bace.tar.lz
gsoc2013-evolution-1e2acdd66b8575b1a48a9950f46c061c1613bace.tar.xz
gsoc2013-evolution-1e2acdd66b8575b1a48a9950f46c061c1613bace.tar.zst
gsoc2013-evolution-1e2acdd66b8575b1a48a9950f46c061c1613bace.zip
Expand also @SOEXT@.
2005-06-15 Tor Lillqvist <tml@novell.com> * plugin.mk: Expand also @SOEXT@. * server.mk: Expand also @SOEXT@ and @EXEEXT@. svn path=/trunk/; revision=29511
-rw-r--r--ChangeLog4
-rw-r--r--plugin.mk2
-rw-r--r--server.mk2
3 files changed, 7 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index c998b16398..2a12e89050 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -6,6 +6,10 @@
in a separate -lregex. Include also camel-provider's CFLAGS and
LIBS for IMPORTERS. Expand win32/Makefile.
+ * plugin.mk: Expand also @SOEXT@.
+
+ * server.mk: Expand also @SOEXT@ and @EXEEXT@.
+
* win32/README
* win32/Makefile.am
* win32/dummy.la
diff --git a/plugin.mk b/plugin.mk
index 812ab38cc7..2df8c53d0e 100644
--- a/plugin.mk
+++ b/plugin.mk
@@ -1,5 +1,5 @@
%.eplug: %.eplug.in
- sed -e 's|\@PLUGINDIR\@|$(plugindir)|' $< > $@
+ sed -e 's|\@PLUGINDIR\@|$(plugindir)|' -e 's|\@SOEXT\@|$(SOEXT)|' $< > $@
%.eplug.in: %.eplug.xml
LC_ALL=C $(INTLTOOL_MERGE) -x -u /tmp $< $@
diff --git a/server.mk b/server.mk
index acdc12bb65..f5152730d3 100644
--- a/server.mk
+++ b/server.mk
@@ -4,6 +4,8 @@
-e 's|\@COMPONENTDIR\@|$(componentdir)|' \
-e 's|\@IMPORTERSDIR\@|$(importersdir)|' \
-e 's|\@VERSION\@|$(BASE_VERSION)|' \
+ -e 's|\@EXEEXT\@|$(EXEEXT)|' \
+ -e 's|\@SOEXT\@|$(SOEXT)|' \
-e 's|\@INTERFACE_VERSION\@|$(INTERFACE_VERSION)|' $< > $@
%_$(BASE_VERSION).server: %.server