Module: sip-router
Branch: master
Commit: ba3d64ff8d1ec6904df906012d1e9f89e5abdc8a
URL:
http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=ba3d64f…
Author: Andrei Pelinescu-Onciul <andrei(a)iptel.org>
Committer: Andrei Pelinescu-Onciul <andrei(a)iptel.org>
Date: Mon Sep 21 09:17:04 2009 +0200
tls: makefile fix
- wrong order (extra rules should be placed after include
Makefile.modules)
Closes FlySpray#17.
---
modules/tls/Makefile | 10 +++++-----
1 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/modules/tls/Makefile b/modules/tls/Makefile
index 213a484..8fac654 100644
--- a/modules/tls/Makefile
+++ b/modules/tls/Makefile
@@ -16,6 +16,11 @@ LIBS+= -L$(LOCALBASE)/lib -L$(LOCALBASE)/ssl/lib -lssl -lcrypto \
# have to add -lz -lkrb5 (zlib and kerberos5).
# E.g.: make TLS_HOOKS=1 TLS_EXTRA_LIBS="-lz -lkrb5"
+
+DEFS+=-DOPENSER_MOD_INTERFACE
+
+include ../../Makefile.modules
+
$(cfg_prefix)/$(cfg_dir):
mkdir -p $(cfg_prefix)/$(cfg_dir)
@@ -24,8 +29,3 @@ install-cfg: $(cfg_prefix)/$(cfg_dir)
./$(SCR_NAME)_cert.sh -d $(cfg_prefix)/$(cfg_dir)
install: install-cfg
-
-
-DEFS+=-DOPENSER_MOD_INTERFACE
-
-include ../../Makefile.modules