GitBucket
4.21.2
Toggle navigation
Snippets
Sign in
Files
Branches
1
Releases
Issues
1
Pull requests
Labels
Priorities
Milestones
Wiki
Forks
nigel.stanger
/
Handbook
Browse code
- Fixed bug that caused additional LaTeX options to be incorrectly added.
master
1 parent
4557a97
commit
bb9f91a84768c002ea38556579cc38f8940bf2ab
nstanger
authored
on 24 Mar 2010
Patch
Showing
1 changed file
make-includes/standard_environment.make
Ignore Space
Show notes
View
make-includes/standard_environment.make
################################################################################ # # File: $Id$ # # Specify standard environmental variables. These can be either actual # shell environment variables, or make variables. # ################################################################################ ################################################################################ # # Various environment variables. # # Set DRAFT to anything to run in draft mode (e.g., make DRAFT=draft xxx). # DRAFT= # # Specify LaTeX document options (comma-separated list). # We need to add a comma if there is something there already! # ifdef LATEX_OPTS LATEX_OPTS+=, endif LATEX_OPTS+=pdftex,usepdftitle=false,$(DRAFT) # # List of standard "phony" build targets. # TARGETS+=all debug test clean tidy targets
################################################################################ # # File: $Id$ # # Specify standard environmental variables. These can be either actual # shell environment variables, or make variables. # ################################################################################ ################################################################################ # # Various environment variables. # # Set DRAFT to anything to run in draft mode (e.g., make DRAFT=draft xxx). # DRAFT= # # Specify LaTeX document options (comma-separated list). # LATEX_OPTS+=pdftex,usepdftitle=false,$(DRAFT) # # List of standard "phony" build targets. # TARGETS+=all debug test clean tidy targets
Show line notes below