diff options
author | JP Rosevear <jpr@ximian.com> | 2003-11-17 23:13:35 +0800 |
---|---|---|
committer | JP Rosevear <jpr@src.gnome.org> | 2003-11-17 23:13:35 +0800 |
commit | 66d47badff98208b1b1c5db1ce0db0d10f32de4b (patch) | |
tree | 4497ea820102d0c263631c4ef941b5908e2244c9 /configure.in | |
parent | e065bb0549a70249b253523181071508df7c3a46 (diff) | |
download | gsoc2013-evolution-66d47badff98208b1b1c5db1ce0db0d10f32de4b.tar.gz gsoc2013-evolution-66d47badff98208b1b1c5db1ce0db0d10f32de4b.tar.zst gsoc2013-evolution-66d47badff98208b1b1c5db1ce0db0d10f32de4b.zip |
use the server.mk file to get rules for building versioned .server files
2003-11-17 JP Rosevear <jpr@ximian.com>
* configure.in: use the server.mk file to get rules for building
versioned .server files
* */Makefile.am: use simplified rule subst
svn path=/trunk/; revision=23387
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/configure.in b/configure.in index f4e7101ea7..93fee0ae46 100644 --- a/configure.in +++ b/configure.in @@ -1282,10 +1282,8 @@ INTERFACE_VERSION="$BASE_VERSION" AC_SUBST(INTERFACE_VERSION) AC_DEFINE_UNQUOTED(INTERFACE_VERSION, "INTERFACE_VERSION", [IDL interface version (Major.Minor)]) -EVO_SUBST_SERVER_RULE='%.server.in: %.server.in.in ; sed -e "s|\@BINDIR\@|$(bindir)|" -e "s|\@LIBEXECDIR\@|$(privlibexecdir)|" -e "s|\@COMPONENTDIR\@|$(componentdir)|" -e "s|\@IMPORTERSDIR\@|$(importersdir)|" -e "s|\@VERSION\@|$(BASE_VERSION)|" -e "s|\@INTERFACE_VERSION\@|$(INTERFACE_VERSION)|" $< > $@' -EVO_NAME_SERVER_RULE='%_$(BASE_VERSION).server: %.server ; mv $< $@' -AC_SUBST(EVO_SUBST_SERVER_RULE) -AC_SUBST(EVO_NAME_SERVER_RULE) +EVO_SERVER_RULE=$srcdir/server.mk +AC_SUBST_FILE(EVO_SERVER_RULE) ################################################## # Check for gtk-doc. |