]> granicus.if.org Git - ejabberd/commitdiff
* src/Makefile.in: ejabberctl doesn't use the erl found by the
authorBadlop <badlop@process-one.net>
Thu, 17 Jul 2008 17:13:01 +0000 (17:13 +0000)
committerBadlop <badlop@process-one.net>
Thu, 17 Jul 2008 17:13:01 +0000 (17:13 +0000)
configure script (EJAB-676)
* src/ejabberdctl.template: Likewise

SVN Revision: 1459

ChangeLog
src/Makefile.in
src/ejabberdctl.template

index 5c7a91bdc27a7b43628e27d6ad032384902ee2c5..b097338c58fc5d15e7009539fb14b39f56c60c46 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2008-07-17  Badlop  <badlop@process-one.net>
+
+       * src/Makefile.in: ejabberctl doesn't use the erl found by the
+       configure script (EJAB-676)
+       * src/ejabberdctl.template: Likewise
+
 2008-07-17  Christophe Romain  <christophe.romain@process-one.net>
 
        * src/web/Makefile.in: use -DSSL39 if compiling with R12 
index f3d81f65df40c16acd1b02cde2abcc80905bb608..a7215ba760de1c50ea132dd2f651fc028f90889b 100644 (file)
@@ -117,7 +117,7 @@ install: all
        install -m 644 msgs/*.msg $(MSGSDIR)
        install -d -m 750 $(ETCDIR)
        [ -f $(ETCDIR)/ejabberd.cfg ] && install -b -m 644 ejabberd.cfg.example $(ETCDIR)/ejabberd.cfg-new || install -b -m 644 ejabberd.cfg.example $(ETCDIR)/ejabberd.cfg
-       sed -e "s*@rootdir@*@prefix@*" ejabberdctl.template > ejabberdctl.example
+       sed -e "s*@rootdir@*@prefix@*" -e "s*@erl@*@ERL@*" ejabberdctl.template > ejabberdctl.example
        [ -f $(ETCDIR)/ejabberdctl.cfg ] && install -b -m 644 ejabberdctl.cfg.example $(ETCDIR)/ejabberdctl.cfg-new || install -b -m 644 ejabberdctl.cfg.example $(ETCDIR)/ejabberdctl.cfg
        install -b -m 644 inetrc $(ETCDIR)/inetrc
        install -d $(SBINDIR)
index ff2d32fc238e51ce6ddbe07820cca2d64b0311b9..abc8b8c7ad81245498ee3713b8e9f9eb3418e493 100644 (file)
@@ -11,6 +11,7 @@ ERL_MAX_ETS_TABLES=1400
 NODE=ejabberd
 HOST=localhost
 ERLANG_NODE=$NODE@$HOST
+ERL=@erl@
 ROOTDIR=@rootdir@
 EJABBERD_CONFIG_PATH=$ROOTDIR/etc/ejabberd/ejabberd.cfg
 LOGS_DIR=$ROOTDIR/var/log/ejabberd/
@@ -74,7 +75,7 @@ export HOME
 # start server
 start ()
 {
-    erl \
+    $ERL \
       $NAME $ERLANG_NODE \
       -noinput -detached \
       -pa $EJABBERD_EBIN \
@@ -103,7 +104,7 @@ debug ()
     echo "Press any key to continue"
     read foo
     echo ""
-    erl \
+    $ERL \
       $NAME ${NODE}debug \
       -remsh $ERLANG_NODE \
       $ERLANG_OPTS $ARGS "$@"
@@ -127,7 +128,7 @@ live ()
     echo "Press any key to continue"
     read foo
     echo ""
-    erl \
+    $ERL \
       $NAME $ERLANG_NODE \
       -pa $EJABBERD_EBIN \
       -mnesia dir "\"$EJABBERD_DB\"" \
@@ -138,7 +139,7 @@ live ()
 # common control function
 ctl ()
 {
-    erl \
+    $ERL \
       $NAME ejabberdctl \
       -noinput \
       -pa $EJABBERD_EBIN \