procinfo-exp.xml 478 B

1234567891011121314
  1. <sect2>
  2. <title>Command explanations</title>
  3. <para>
  4. <userinput>sed "s/-ltermcap/-lncurses/" Makefile | make -f -:</userinput>
  5. This will replace -ltermcap with -lncurses 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. We do this because libtermcap
  9. is declared obsolete in favor of libncurses.
  10. </para>
  11. </sect2>