No rule to make target `include/config/auto.conf', needed by `include/config/kernel.release'. Stop

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











up vote
4
down vote

favorite












I am working on petalinux, a linux port for Xilinx FPGAs called Zynq.
The tool that I am using is petalinux-config.



This opens a GUI where I can select various options, such as compress kernel, enable/disable CRC, rootfs etc etc.



After this configuration I have to build with petalinux-build



This often compiles well, but some times after I change some settings I get the following error:



No rule to make target `include/config/auto.conf', needed by `include/config/kernel.release'. Stop.


[root@xilinx kernel]# petalinux-build
INFO: Checking component...
INFO: Generating make files and build linux
INFO: Generating make files for the subcomponents of linux
INFO: Building linux
[INFO ] build system.dtb
[INFO ] build linux/kernel
[ERROR] make[5]: *** [silentoldconfig] Error 1
[ERROR] make[4]: *** [silentoldconfig] Error 2
[ERROR] make[3]: *** No rule to make target `include/config/auto.conf', needed by `include/config/kernel.release'. Stop.
[ERROR] make[2]: *** [sub-make] Error 2
[ERROR] make[1]: *** [/home/suheb/petalinux-v2013.10-final/Xilinx-ZC702-14.7/build/linux/kernel/xlnx-3.8/vmlinux] Error 2
ERROR: Failed to build linux


What is the meaning of this error?



Are there any general guidlines to tackle such errors?
I understand that if I remove some features which are really needed by the OS, then it will not compile. But my idea is to make my image as small as possible so I need to remove more and more features, and compile it successfully.



I would like to understand, is this error because I have deselected some features (and those are required by some other modules) or it is some other problem such as user ownership/permission etc?










share|improve this question



















  • 1




    generally, you start with ensuring you have all dependencies. Do you have the autoconf tools?
    – mikeserv
    Apr 14 '14 at 1:30














up vote
4
down vote

favorite












I am working on petalinux, a linux port for Xilinx FPGAs called Zynq.
The tool that I am using is petalinux-config.



This opens a GUI where I can select various options, such as compress kernel, enable/disable CRC, rootfs etc etc.



After this configuration I have to build with petalinux-build



This often compiles well, but some times after I change some settings I get the following error:



No rule to make target `include/config/auto.conf', needed by `include/config/kernel.release'. Stop.


[root@xilinx kernel]# petalinux-build
INFO: Checking component...
INFO: Generating make files and build linux
INFO: Generating make files for the subcomponents of linux
INFO: Building linux
[INFO ] build system.dtb
[INFO ] build linux/kernel
[ERROR] make[5]: *** [silentoldconfig] Error 1
[ERROR] make[4]: *** [silentoldconfig] Error 2
[ERROR] make[3]: *** No rule to make target `include/config/auto.conf', needed by `include/config/kernel.release'. Stop.
[ERROR] make[2]: *** [sub-make] Error 2
[ERROR] make[1]: *** [/home/suheb/petalinux-v2013.10-final/Xilinx-ZC702-14.7/build/linux/kernel/xlnx-3.8/vmlinux] Error 2
ERROR: Failed to build linux


What is the meaning of this error?



Are there any general guidlines to tackle such errors?
I understand that if I remove some features which are really needed by the OS, then it will not compile. But my idea is to make my image as small as possible so I need to remove more and more features, and compile it successfully.



I would like to understand, is this error because I have deselected some features (and those are required by some other modules) or it is some other problem such as user ownership/permission etc?










share|improve this question



















  • 1




    generally, you start with ensuring you have all dependencies. Do you have the autoconf tools?
    – mikeserv
    Apr 14 '14 at 1:30












up vote
4
down vote

favorite









up vote
4
down vote

favorite











I am working on petalinux, a linux port for Xilinx FPGAs called Zynq.
The tool that I am using is petalinux-config.



This opens a GUI where I can select various options, such as compress kernel, enable/disable CRC, rootfs etc etc.



After this configuration I have to build with petalinux-build



This often compiles well, but some times after I change some settings I get the following error:



No rule to make target `include/config/auto.conf', needed by `include/config/kernel.release'. Stop.


[root@xilinx kernel]# petalinux-build
INFO: Checking component...
INFO: Generating make files and build linux
INFO: Generating make files for the subcomponents of linux
INFO: Building linux
[INFO ] build system.dtb
[INFO ] build linux/kernel
[ERROR] make[5]: *** [silentoldconfig] Error 1
[ERROR] make[4]: *** [silentoldconfig] Error 2
[ERROR] make[3]: *** No rule to make target `include/config/auto.conf', needed by `include/config/kernel.release'. Stop.
[ERROR] make[2]: *** [sub-make] Error 2
[ERROR] make[1]: *** [/home/suheb/petalinux-v2013.10-final/Xilinx-ZC702-14.7/build/linux/kernel/xlnx-3.8/vmlinux] Error 2
ERROR: Failed to build linux


What is the meaning of this error?



Are there any general guidlines to tackle such errors?
I understand that if I remove some features which are really needed by the OS, then it will not compile. But my idea is to make my image as small as possible so I need to remove more and more features, and compile it successfully.



I would like to understand, is this error because I have deselected some features (and those are required by some other modules) or it is some other problem such as user ownership/permission etc?










share|improve this question















I am working on petalinux, a linux port for Xilinx FPGAs called Zynq.
The tool that I am using is petalinux-config.



This opens a GUI where I can select various options, such as compress kernel, enable/disable CRC, rootfs etc etc.



After this configuration I have to build with petalinux-build



This often compiles well, but some times after I change some settings I get the following error:



No rule to make target `include/config/auto.conf', needed by `include/config/kernel.release'. Stop.


[root@xilinx kernel]# petalinux-build
INFO: Checking component...
INFO: Generating make files and build linux
INFO: Generating make files for the subcomponents of linux
INFO: Building linux
[INFO ] build system.dtb
[INFO ] build linux/kernel
[ERROR] make[5]: *** [silentoldconfig] Error 1
[ERROR] make[4]: *** [silentoldconfig] Error 2
[ERROR] make[3]: *** No rule to make target `include/config/auto.conf', needed by `include/config/kernel.release'. Stop.
[ERROR] make[2]: *** [sub-make] Error 2
[ERROR] make[1]: *** [/home/suheb/petalinux-v2013.10-final/Xilinx-ZC702-14.7/build/linux/kernel/xlnx-3.8/vmlinux] Error 2
ERROR: Failed to build linux


What is the meaning of this error?



Are there any general guidlines to tackle such errors?
I understand that if I remove some features which are really needed by the OS, then it will not compile. But my idea is to make my image as small as possible so I need to remove more and more features, and compile it successfully.



I would like to understand, is this error because I have deselected some features (and those are required by some other modules) or it is some other problem such as user ownership/permission etc?







linux






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Jul 28 '14 at 8:01









HalosGhost

3,65592135




3,65592135










asked Feb 22 '14 at 15:16









user2799508

60261736




60261736







  • 1




    generally, you start with ensuring you have all dependencies. Do you have the autoconf tools?
    – mikeserv
    Apr 14 '14 at 1:30












  • 1




    generally, you start with ensuring you have all dependencies. Do you have the autoconf tools?
    – mikeserv
    Apr 14 '14 at 1:30







1




1




generally, you start with ensuring you have all dependencies. Do you have the autoconf tools?
– mikeserv
Apr 14 '14 at 1:30




generally, you start with ensuring you have all dependencies. Do you have the autoconf tools?
– mikeserv
Apr 14 '14 at 1:30










4 Answers
4






active

oldest

votes

















up vote
3
down vote













As mentioned you are using your own custom linux, I assume you run make menuconfig to strip down feature as it leave you with some scripts. The issue is not in the toolchain but some prerequisites:



Petalinux copy the source code and give final codes in the build directory.



The reason you are getting this error could possibly be the source of your kernel.
Please check your kernel and try to clean the directory by running



$>make distclean


This will ensure that your source is clean. Next step should be cleaning the created kernel located in build/linux/kernel. Run



$>petalinux-build -c kernel -x distclean
$>petalinux-build -c kernel


this should probably do the job.






share|improve this answer






















  • Hi Priyank, welcome to unix.SE. You put in some effort properly formatting your response, but in the future, favor using the proper markdown instead of placing html tags. I've gone through and updated the formatting; you can click the "edit" link on your answer to see how what I've done affects the output.
    – drs
    Jun 27 '14 at 14:10










  • make distclean did the trick for me :)
    – Adit Ya
    Jun 13 '16 at 16:12

















up vote
1
down vote














What is the meaning of this error?




Literally, that a make target has been referenced that does not exist. One possible reason is that make processes include directives (which source other makefiles) in-line when it encounters them. So, if the target is defined in a makefile which was supposed to be included at some point, but that point was never reached, the target won't exist.



To sort that out precisely, you could use make -d (which will give you some tracing) and go through the logic of the makefiles. However, keep in mind that some of the make files are evidently generated (as per the INFO output), and another possible cause of the problem is that the target was never generated. That's getting into a pretty serious regress...



There is a bit of a clue in the previous two lines referring to silentoldconfig. This indicates your .config is still being parsed, and likely contains some kind of inconsistency that causes the problem.



You have not said how you are doing the configuration. The make menuconfig et. al. systems ideally prevent such inconsistencies from occurring, but they are not perfect particularly in the context of a patched source tree, which this presumably is. It appears you maybe using a third-party configuration system instead (petalinux-config), and this could be what is failing to catch the issue.



I would go through adding/removing options one at a time to determine which one triggers the issue. If you are then convinced it should not be a problem, you can report it to the petalinux people.






share|improve this answer



























    up vote
    0
    down vote













    I know this thread is old, but I had the same problem and found the solution on a Xilinx's support thread. You need to run petalinux-config and set the (X) PetaLinux u-boot config.



    See the following link to Xilinx's support: AR# 66296






    share|improve this answer



























      up vote
      -1
      down vote













      1. Install autoconf

      2. make syncconfig

      3. make





      share|improve this answer










      New contributor




      Karpagam is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.













      • 2




        A little more detail and explanation would be nice.
        – G-Man
        Nov 22 at 7:59










      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',
      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%2f116407%2fno-rule-to-make-target-include-config-auto-conf-needed-by-include-config-ker%23new-answer', 'question_page');

      );

      Post as a guest















      Required, but never shown

























      4 Answers
      4






      active

      oldest

      votes








      4 Answers
      4






      active

      oldest

      votes









      active

      oldest

      votes






      active

      oldest

      votes








      up vote
      3
      down vote













      As mentioned you are using your own custom linux, I assume you run make menuconfig to strip down feature as it leave you with some scripts. The issue is not in the toolchain but some prerequisites:



      Petalinux copy the source code and give final codes in the build directory.



      The reason you are getting this error could possibly be the source of your kernel.
      Please check your kernel and try to clean the directory by running



      $>make distclean


      This will ensure that your source is clean. Next step should be cleaning the created kernel located in build/linux/kernel. Run



      $>petalinux-build -c kernel -x distclean
      $>petalinux-build -c kernel


      this should probably do the job.






      share|improve this answer






















      • Hi Priyank, welcome to unix.SE. You put in some effort properly formatting your response, but in the future, favor using the proper markdown instead of placing html tags. I've gone through and updated the formatting; you can click the "edit" link on your answer to see how what I've done affects the output.
        – drs
        Jun 27 '14 at 14:10










      • make distclean did the trick for me :)
        – Adit Ya
        Jun 13 '16 at 16:12














      up vote
      3
      down vote













      As mentioned you are using your own custom linux, I assume you run make menuconfig to strip down feature as it leave you with some scripts. The issue is not in the toolchain but some prerequisites:



      Petalinux copy the source code and give final codes in the build directory.



      The reason you are getting this error could possibly be the source of your kernel.
      Please check your kernel and try to clean the directory by running



      $>make distclean


      This will ensure that your source is clean. Next step should be cleaning the created kernel located in build/linux/kernel. Run



      $>petalinux-build -c kernel -x distclean
      $>petalinux-build -c kernel


      this should probably do the job.






      share|improve this answer






















      • Hi Priyank, welcome to unix.SE. You put in some effort properly formatting your response, but in the future, favor using the proper markdown instead of placing html tags. I've gone through and updated the formatting; you can click the "edit" link on your answer to see how what I've done affects the output.
        – drs
        Jun 27 '14 at 14:10










      • make distclean did the trick for me :)
        – Adit Ya
        Jun 13 '16 at 16:12












      up vote
      3
      down vote










      up vote
      3
      down vote









      As mentioned you are using your own custom linux, I assume you run make menuconfig to strip down feature as it leave you with some scripts. The issue is not in the toolchain but some prerequisites:



      Petalinux copy the source code and give final codes in the build directory.



      The reason you are getting this error could possibly be the source of your kernel.
      Please check your kernel and try to clean the directory by running



      $>make distclean


      This will ensure that your source is clean. Next step should be cleaning the created kernel located in build/linux/kernel. Run



      $>petalinux-build -c kernel -x distclean
      $>petalinux-build -c kernel


      this should probably do the job.






      share|improve this answer














      As mentioned you are using your own custom linux, I assume you run make menuconfig to strip down feature as it leave you with some scripts. The issue is not in the toolchain but some prerequisites:



      Petalinux copy the source code and give final codes in the build directory.



      The reason you are getting this error could possibly be the source of your kernel.
      Please check your kernel and try to clean the directory by running



      $>make distclean


      This will ensure that your source is clean. Next step should be cleaning the created kernel located in build/linux/kernel. Run



      $>petalinux-build -c kernel -x distclean
      $>petalinux-build -c kernel


      this should probably do the job.







      share|improve this answer














      share|improve this answer



      share|improve this answer








      edited Jun 27 '14 at 14:10









      drs

      3,29352858




      3,29352858










      answered Jun 27 '14 at 13:48









      Priyank Arora

      313




      313











      • Hi Priyank, welcome to unix.SE. You put in some effort properly formatting your response, but in the future, favor using the proper markdown instead of placing html tags. I've gone through and updated the formatting; you can click the "edit" link on your answer to see how what I've done affects the output.
        – drs
        Jun 27 '14 at 14:10










      • make distclean did the trick for me :)
        – Adit Ya
        Jun 13 '16 at 16:12
















      • Hi Priyank, welcome to unix.SE. You put in some effort properly formatting your response, but in the future, favor using the proper markdown instead of placing html tags. I've gone through and updated the formatting; you can click the "edit" link on your answer to see how what I've done affects the output.
        – drs
        Jun 27 '14 at 14:10










      • make distclean did the trick for me :)
        – Adit Ya
        Jun 13 '16 at 16:12















      Hi Priyank, welcome to unix.SE. You put in some effort properly formatting your response, but in the future, favor using the proper markdown instead of placing html tags. I've gone through and updated the formatting; you can click the "edit" link on your answer to see how what I've done affects the output.
      – drs
      Jun 27 '14 at 14:10




      Hi Priyank, welcome to unix.SE. You put in some effort properly formatting your response, but in the future, favor using the proper markdown instead of placing html tags. I've gone through and updated the formatting; you can click the "edit" link on your answer to see how what I've done affects the output.
      – drs
      Jun 27 '14 at 14:10












      make distclean did the trick for me :)
      – Adit Ya
      Jun 13 '16 at 16:12




      make distclean did the trick for me :)
      – Adit Ya
      Jun 13 '16 at 16:12












      up vote
      1
      down vote














      What is the meaning of this error?




      Literally, that a make target has been referenced that does not exist. One possible reason is that make processes include directives (which source other makefiles) in-line when it encounters them. So, if the target is defined in a makefile which was supposed to be included at some point, but that point was never reached, the target won't exist.



      To sort that out precisely, you could use make -d (which will give you some tracing) and go through the logic of the makefiles. However, keep in mind that some of the make files are evidently generated (as per the INFO output), and another possible cause of the problem is that the target was never generated. That's getting into a pretty serious regress...



      There is a bit of a clue in the previous two lines referring to silentoldconfig. This indicates your .config is still being parsed, and likely contains some kind of inconsistency that causes the problem.



      You have not said how you are doing the configuration. The make menuconfig et. al. systems ideally prevent such inconsistencies from occurring, but they are not perfect particularly in the context of a patched source tree, which this presumably is. It appears you maybe using a third-party configuration system instead (petalinux-config), and this could be what is failing to catch the issue.



      I would go through adding/removing options one at a time to determine which one triggers the issue. If you are then convinced it should not be a problem, you can report it to the petalinux people.






      share|improve this answer
























        up vote
        1
        down vote














        What is the meaning of this error?




        Literally, that a make target has been referenced that does not exist. One possible reason is that make processes include directives (which source other makefiles) in-line when it encounters them. So, if the target is defined in a makefile which was supposed to be included at some point, but that point was never reached, the target won't exist.



        To sort that out precisely, you could use make -d (which will give you some tracing) and go through the logic of the makefiles. However, keep in mind that some of the make files are evidently generated (as per the INFO output), and another possible cause of the problem is that the target was never generated. That's getting into a pretty serious regress...



        There is a bit of a clue in the previous two lines referring to silentoldconfig. This indicates your .config is still being parsed, and likely contains some kind of inconsistency that causes the problem.



        You have not said how you are doing the configuration. The make menuconfig et. al. systems ideally prevent such inconsistencies from occurring, but they are not perfect particularly in the context of a patched source tree, which this presumably is. It appears you maybe using a third-party configuration system instead (petalinux-config), and this could be what is failing to catch the issue.



        I would go through adding/removing options one at a time to determine which one triggers the issue. If you are then convinced it should not be a problem, you can report it to the petalinux people.






        share|improve this answer






















          up vote
          1
          down vote










          up vote
          1
          down vote










          What is the meaning of this error?




          Literally, that a make target has been referenced that does not exist. One possible reason is that make processes include directives (which source other makefiles) in-line when it encounters them. So, if the target is defined in a makefile which was supposed to be included at some point, but that point was never reached, the target won't exist.



          To sort that out precisely, you could use make -d (which will give you some tracing) and go through the logic of the makefiles. However, keep in mind that some of the make files are evidently generated (as per the INFO output), and another possible cause of the problem is that the target was never generated. That's getting into a pretty serious regress...



          There is a bit of a clue in the previous two lines referring to silentoldconfig. This indicates your .config is still being parsed, and likely contains some kind of inconsistency that causes the problem.



          You have not said how you are doing the configuration. The make menuconfig et. al. systems ideally prevent such inconsistencies from occurring, but they are not perfect particularly in the context of a patched source tree, which this presumably is. It appears you maybe using a third-party configuration system instead (petalinux-config), and this could be what is failing to catch the issue.



          I would go through adding/removing options one at a time to determine which one triggers the issue. If you are then convinced it should not be a problem, you can report it to the petalinux people.






          share|improve this answer













          What is the meaning of this error?




          Literally, that a make target has been referenced that does not exist. One possible reason is that make processes include directives (which source other makefiles) in-line when it encounters them. So, if the target is defined in a makefile which was supposed to be included at some point, but that point was never reached, the target won't exist.



          To sort that out precisely, you could use make -d (which will give you some tracing) and go through the logic of the makefiles. However, keep in mind that some of the make files are evidently generated (as per the INFO output), and another possible cause of the problem is that the target was never generated. That's getting into a pretty serious regress...



          There is a bit of a clue in the previous two lines referring to silentoldconfig. This indicates your .config is still being parsed, and likely contains some kind of inconsistency that causes the problem.



          You have not said how you are doing the configuration. The make menuconfig et. al. systems ideally prevent such inconsistencies from occurring, but they are not perfect particularly in the context of a patched source tree, which this presumably is. It appears you maybe using a third-party configuration system instead (petalinux-config), and this could be what is failing to catch the issue.



          I would go through adding/removing options one at a time to determine which one triggers the issue. If you are then convinced it should not be a problem, you can report it to the petalinux people.







          share|improve this answer












          share|improve this answer



          share|improve this answer










          answered Feb 22 '14 at 15:49









          goldilocks

          61k13150204




          61k13150204




















              up vote
              0
              down vote













              I know this thread is old, but I had the same problem and found the solution on a Xilinx's support thread. You need to run petalinux-config and set the (X) PetaLinux u-boot config.



              See the following link to Xilinx's support: AR# 66296






              share|improve this answer
























                up vote
                0
                down vote













                I know this thread is old, but I had the same problem and found the solution on a Xilinx's support thread. You need to run petalinux-config and set the (X) PetaLinux u-boot config.



                See the following link to Xilinx's support: AR# 66296






                share|improve this answer






















                  up vote
                  0
                  down vote










                  up vote
                  0
                  down vote









                  I know this thread is old, but I had the same problem and found the solution on a Xilinx's support thread. You need to run petalinux-config and set the (X) PetaLinux u-boot config.



                  See the following link to Xilinx's support: AR# 66296






                  share|improve this answer












                  I know this thread is old, but I had the same problem and found the solution on a Xilinx's support thread. You need to run petalinux-config and set the (X) PetaLinux u-boot config.



                  See the following link to Xilinx's support: AR# 66296







                  share|improve this answer












                  share|improve this answer



                  share|improve this answer










                  answered Aug 12 '16 at 14:05









                  Desertman13

                  163




                  163




















                      up vote
                      -1
                      down vote













                      1. Install autoconf

                      2. make syncconfig

                      3. make





                      share|improve this answer










                      New contributor




                      Karpagam is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                      Check out our Code of Conduct.













                      • 2




                        A little more detail and explanation would be nice.
                        – G-Man
                        Nov 22 at 7:59














                      up vote
                      -1
                      down vote













                      1. Install autoconf

                      2. make syncconfig

                      3. make





                      share|improve this answer










                      New contributor




                      Karpagam is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                      Check out our Code of Conduct.













                      • 2




                        A little more detail and explanation would be nice.
                        – G-Man
                        Nov 22 at 7:59












                      up vote
                      -1
                      down vote










                      up vote
                      -1
                      down vote









                      1. Install autoconf

                      2. make syncconfig

                      3. make





                      share|improve this answer










                      New contributor




                      Karpagam is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                      Check out our Code of Conduct.









                      1. Install autoconf

                      2. make syncconfig

                      3. make






                      share|improve this answer










                      New contributor




                      Karpagam is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                      Check out our Code of Conduct.









                      share|improve this answer



                      share|improve this answer








                      edited Nov 22 at 11:59









                      Jeff Schaller

                      36.8k1052121




                      36.8k1052121






                      New contributor




                      Karpagam is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                      Check out our Code of Conduct.









                      answered Nov 22 at 7:16









                      Karpagam

                      1




                      1




                      New contributor




                      Karpagam is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                      Check out our Code of Conduct.





                      New contributor





                      Karpagam is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                      Check out our Code of Conduct.






                      Karpagam is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                      Check out our Code of Conduct.







                      • 2




                        A little more detail and explanation would be nice.
                        – G-Man
                        Nov 22 at 7:59












                      • 2




                        A little more detail and explanation would be nice.
                        – G-Man
                        Nov 22 at 7:59







                      2




                      2




                      A little more detail and explanation would be nice.
                      – G-Man
                      Nov 22 at 7:59




                      A little more detail and explanation would be nice.
                      – G-Man
                      Nov 22 at 7:59

















                       

                      draft saved


                      draft discarded















































                       


                      draft saved


                      draft discarded














                      StackExchange.ready(
                      function ()
                      StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f116407%2fno-rule-to-make-target-include-config-auto-conf-needed-by-include-config-ker%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