should not hardcode path of makeindex

Issue #79 resolved
Former user created an issue

Originally reported on Google Code with ID 79 ``` I could not build on my Mac because makeindex because the path differs from the one assumed in the spec build system.

cc:upc-specification-read-only jhammond$ which makeindex /opt/local/bin/makeindex

This is the solution:

cc:upc-specification-read-only jhammond$ svn diff common/latex.gmk Index: common/latex.gmk

--- common/latex.gmk (revision 63) +++ common/latex.gmk (working copy) @@ -169,9 +169,9 @@ LATEX2RTF_FLAGS?= LPR?= lpr LPR_FLAGS?= -MAKEIDX?= /usr/bin/makeindex +MAKEIDX?= makeindex MAKEIDX_FLAGS?= -MAKEGLS?= /usr/bin/makeindex +MAKEGLS?= makeindex MAKEGLS_FLAGS?= PDFLATEX?= pdflatex PDFLATEX_ENV?= ```

Reported by `jeff.science` on 2012-08-03 19:05:34

Comments (2)

  1. Former user Account Deleted

    ``` Jeff, thanks.

    As background, this version of latex.gmk is provided in the event that the latex-mk package has not been previously installed on the system where the spec. is being built.

    This looks like an appropriate fix. I will apply the patch.

    ```

    Reported by `gary.funck` on 2012-08-05 21:44:59

  2. Former user Account Deleted

    ``` Patch applied:

    r68 | gary.funck@gmail.com | 2012-08-05 14:54:35 -0700 (Sun, 05 Aug 2012) | 2 lines

    latex.gmk - use relative path for makeindex. (sugggested by Jeff Hammond in issue #79)

    ```

    Reported by `gary.funck` on 2012-08-05 21:56:45 - Status changed: `Fixed` - Labels added: Milestone-Spec-1.3

  3. Log in to comment