diff options
author | konablend <[email protected]> | 2009-03-05 06:57:31 +0000 |
---|---|---|
committer | konablend <[email protected]> | 2009-03-05 06:57:31 +0000 |
commit | d9cbd469c2cda62f205599173910ec627031dadd (patch) | |
tree | 188532861f51a1650a643e426501c2dc257fd536 /make/include/gcc.defs | |
parent | 66672c6931393a17a4ffc48c1509205d23518221 (diff) |
BuildSystem:
- increased inter-contrib module rebuild sanity;
ie: if an svn update is done and a new x264 tarball is available, the system will fetch
it and proceed to extract->patch->configure->build->install and because it is utterly
dangerous (undefined results can easily occur) to re-extract over an existing extract,
the appropriate steps are taken to first rm -fr the tarball extraction directory.
This is generally good practice but I'm explaining it here in detail in case some
developers are taking risks like editing files in the build/ tree and erroneously
assuming they will not be overwritten by either this new build system or contrib
(foreign) build systems.
- added contrib touch/untouch targets; see doc.
- updated docs accordingly.
- fixed typo for GCCargs.g.max which caused --debug=max to not operate properly.
- unofficial builds will no longer rebrand naming to 'NoNameBrand'
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@2223 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'make/include/gcc.defs')
-rw-r--r-- | make/include/gcc.defs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/make/include/gcc.defs b/make/include/gcc.defs index 4ed746392..ef4b180f8 100644 --- a/make/include/gcc.defs +++ b/make/include/gcc.defs @@ -89,7 +89,7 @@ define import.GCC $(1).GCC.args.g.none = $$(GCC.args.g.none) $(1).GCC.args.g.min = $$(GCC.args.g.min) $(1).GCC.args.g.std = $$(GCC.args.g.std) - $(1).GCC.args.g.max = $$(GCC.args.g.max ) + $(1).GCC.args.g.max = $$(GCC.args.g.max) $(1).GCC.args.O.none = $$(GCC.args.O.none) $(1).GCC.args.O.size = $$(GCC.args.O.size) $(1).GCC.args.O.speed = $$(GCC.args.O.speed) |