Configure cannot find intltool installed in custom path

The name of the pictureThe name of the pictureThe name of the pictureClash Royale CLAN TAG#URR8PPP












1















I'm trying to build transmission-2.94 on a remote server where I have no privileged access. I, therefore, wanna install all custom software under ~/.local.
I have successfully installed gettext and intltool with PATH and PKG_CONFIG_PATH set-up.



[user@remote transmission-2.94]$ intltool-update --version
intltool-update (intltool) 0.50.2
Written by Kenneth Christiansen, Maciej Stachowiak, and Darin Adler.

Copyright (C) 2000-2003 Free Software Foundation, Inc.
This is free software; see the source for copying conditions. There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
[user@remote transmission-2.94]$ gettext --version
gettext (GNU gettext-runtime) 0.19
Copyright (C) 1995-1997, 2000-2007 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.
Written by Ulrich Drepper.
[user@remote transmission-2.94]$


However, when I run ./configure --prefix=$HOME/.local --enable-utp --enable-cli --enable-daemon --disable-gtk, I still get the following error:



checking system miniupnpc library... none
configure: error: "--enable-nls requires intltool to be installed."


I'm pretty sure my current bash can find intltool and gettext currectly.



[user@remote transmission-2.94]$ which intltool-extract
~/.local/bin/intltool-extract
[user@remote transmission-2.94]$ which intltool-merge
~/.local/bin/intltool-merge
[user@remote transmission-2.94]$ which intltool-prepare
~/.local/bin/intltool-prepare
[user@remote transmission-2.94]$ which intltool-update
~/.local/bin/intltool-update
[user@remote transmission-2.94]$ which intltoolize
~/.local/bin/intltoolize
[user@remote transmission-2.94]$ which gettext
~/.local/bin/gettext
[user@remote transmission-2.94]$ which gettextize
~/.local/bin/gettextize
[user@remote transmission-2.94]$


Any ideas?










share|improve this question


























    1















    I'm trying to build transmission-2.94 on a remote server where I have no privileged access. I, therefore, wanna install all custom software under ~/.local.
    I have successfully installed gettext and intltool with PATH and PKG_CONFIG_PATH set-up.



    [user@remote transmission-2.94]$ intltool-update --version
    intltool-update (intltool) 0.50.2
    Written by Kenneth Christiansen, Maciej Stachowiak, and Darin Adler.

    Copyright (C) 2000-2003 Free Software Foundation, Inc.
    This is free software; see the source for copying conditions. There is NO
    warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
    [user@remote transmission-2.94]$ gettext --version
    gettext (GNU gettext-runtime) 0.19
    Copyright (C) 1995-1997, 2000-2007 Free Software Foundation, Inc.
    License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>
    This is free software: you are free to change and redistribute it.
    There is NO WARRANTY, to the extent permitted by law.
    Written by Ulrich Drepper.
    [user@remote transmission-2.94]$


    However, when I run ./configure --prefix=$HOME/.local --enable-utp --enable-cli --enable-daemon --disable-gtk, I still get the following error:



    checking system miniupnpc library... none
    configure: error: "--enable-nls requires intltool to be installed."


    I'm pretty sure my current bash can find intltool and gettext currectly.



    [user@remote transmission-2.94]$ which intltool-extract
    ~/.local/bin/intltool-extract
    [user@remote transmission-2.94]$ which intltool-merge
    ~/.local/bin/intltool-merge
    [user@remote transmission-2.94]$ which intltool-prepare
    ~/.local/bin/intltool-prepare
    [user@remote transmission-2.94]$ which intltool-update
    ~/.local/bin/intltool-update
    [user@remote transmission-2.94]$ which intltoolize
    ~/.local/bin/intltoolize
    [user@remote transmission-2.94]$ which gettext
    ~/.local/bin/gettext
    [user@remote transmission-2.94]$ which gettextize
    ~/.local/bin/gettextize
    [user@remote transmission-2.94]$


    Any ideas?










    share|improve this question
























      1












      1








      1








      I'm trying to build transmission-2.94 on a remote server where I have no privileged access. I, therefore, wanna install all custom software under ~/.local.
      I have successfully installed gettext and intltool with PATH and PKG_CONFIG_PATH set-up.



      [user@remote transmission-2.94]$ intltool-update --version
      intltool-update (intltool) 0.50.2
      Written by Kenneth Christiansen, Maciej Stachowiak, and Darin Adler.

      Copyright (C) 2000-2003 Free Software Foundation, Inc.
      This is free software; see the source for copying conditions. There is NO
      warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
      [user@remote transmission-2.94]$ gettext --version
      gettext (GNU gettext-runtime) 0.19
      Copyright (C) 1995-1997, 2000-2007 Free Software Foundation, Inc.
      License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>
      This is free software: you are free to change and redistribute it.
      There is NO WARRANTY, to the extent permitted by law.
      Written by Ulrich Drepper.
      [user@remote transmission-2.94]$


      However, when I run ./configure --prefix=$HOME/.local --enable-utp --enable-cli --enable-daemon --disable-gtk, I still get the following error:



      checking system miniupnpc library... none
      configure: error: "--enable-nls requires intltool to be installed."


      I'm pretty sure my current bash can find intltool and gettext currectly.



      [user@remote transmission-2.94]$ which intltool-extract
      ~/.local/bin/intltool-extract
      [user@remote transmission-2.94]$ which intltool-merge
      ~/.local/bin/intltool-merge
      [user@remote transmission-2.94]$ which intltool-prepare
      ~/.local/bin/intltool-prepare
      [user@remote transmission-2.94]$ which intltool-update
      ~/.local/bin/intltool-update
      [user@remote transmission-2.94]$ which intltoolize
      ~/.local/bin/intltoolize
      [user@remote transmission-2.94]$ which gettext
      ~/.local/bin/gettext
      [user@remote transmission-2.94]$ which gettextize
      ~/.local/bin/gettextize
      [user@remote transmission-2.94]$


      Any ideas?










      share|improve this question














      I'm trying to build transmission-2.94 on a remote server where I have no privileged access. I, therefore, wanna install all custom software under ~/.local.
      I have successfully installed gettext and intltool with PATH and PKG_CONFIG_PATH set-up.



      [user@remote transmission-2.94]$ intltool-update --version
      intltool-update (intltool) 0.50.2
      Written by Kenneth Christiansen, Maciej Stachowiak, and Darin Adler.

      Copyright (C) 2000-2003 Free Software Foundation, Inc.
      This is free software; see the source for copying conditions. There is NO
      warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
      [user@remote transmission-2.94]$ gettext --version
      gettext (GNU gettext-runtime) 0.19
      Copyright (C) 1995-1997, 2000-2007 Free Software Foundation, Inc.
      License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>
      This is free software: you are free to change and redistribute it.
      There is NO WARRANTY, to the extent permitted by law.
      Written by Ulrich Drepper.
      [user@remote transmission-2.94]$


      However, when I run ./configure --prefix=$HOME/.local --enable-utp --enable-cli --enable-daemon --disable-gtk, I still get the following error:



      checking system miniupnpc library... none
      configure: error: "--enable-nls requires intltool to be installed."


      I'm pretty sure my current bash can find intltool and gettext currectly.



      [user@remote transmission-2.94]$ which intltool-extract
      ~/.local/bin/intltool-extract
      [user@remote transmission-2.94]$ which intltool-merge
      ~/.local/bin/intltool-merge
      [user@remote transmission-2.94]$ which intltool-prepare
      ~/.local/bin/intltool-prepare
      [user@remote transmission-2.94]$ which intltool-update
      ~/.local/bin/intltool-update
      [user@remote transmission-2.94]$ which intltoolize
      ~/.local/bin/intltoolize
      [user@remote transmission-2.94]$ which gettext
      ~/.local/bin/gettext
      [user@remote transmission-2.94]$ which gettextize
      ~/.local/bin/gettextize
      [user@remote transmission-2.94]$


      Any ideas?







      linux compiling transmission autotools






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Jan 20 at 5:41









      TJMTJM

      18510




      18510




















          0






          active

          oldest

          votes











          Your Answer








          StackExchange.ready(function()
          var channelOptions =
          tags: "".split(" "),
          id: "106"
          ;
          initTagRenderer("".split(" "), "".split(" "), channelOptions);

          StackExchange.using("externalEditor", function()
          // Have to fire editor after snippets, if snippets enabled
          if (StackExchange.settings.snippets.snippetsEnabled)
          StackExchange.using("snippets", function()
          createEditor();
          );

          else
          createEditor();

          );

          function createEditor()
          StackExchange.prepareEditor(
          heartbeatType: 'answer',
          autoActivateHeartbeat: false,
          convertImagesToLinks: false,
          noModals: true,
          showLowRepImageUploadWarning: true,
          reputationToPostImages: null,
          bindNavPrevention: true,
          postfix: "",
          imageUploader:
          brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
          contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
          allowUrls: true
          ,
          onDemand: true,
          discardSelector: ".discard-answer"
          ,immediatelyShowMarkdownHelp:true
          );



          );













          draft saved

          draft discarded


















          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f495568%2fconfigure-cannot-find-intltool-installed-in-custom-path%23new-answer', 'question_page');

          );

          Post as a guest















          Required, but never shown

























          0






          active

          oldest

          votes








          0






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes















          draft saved

          draft discarded
















































          Thanks for contributing an answer to Unix & Linux Stack Exchange!


          • Please be sure to answer the question. Provide details and share your research!

          But avoid


          • Asking for help, clarification, or responding to other answers.

          • Making statements based on opinion; back them up with references or personal experience.

          To learn more, see our tips on writing great answers.




          draft saved


          draft discarded














          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f495568%2fconfigure-cannot-find-intltool-installed-in-custom-path%23new-answer', 'question_page');

          );

          Post as a guest















          Required, but never shown





















































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown

































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown






          Popular posts from this blog

          How to check contact read email or not when send email to Individual?

          Bahrain

          Postfix configuration issue with fips on centos 7; mailgun relay