procps-exp.xml 503 B

1234567891011121314
  1. <sect2>
  2. <title>Command explanations</title>
  3. <para>
  4. <userinput>sed "s/XConsole/#XConsole/" Makefile | make -f -:</userinput>
  5. This will comment out the XConsole variable in the Makefile and pipe the
  6. output of sed (the modified Makefile) directly to the make program. This
  7. is an alternate and more efficient way to direct the output to a file
  8. and tell make to use that alternate file. The XConsole build is disabled
  9. because it can't be build yet because we don't have X installed yet.
  10. </para>
  11. </sect2>