diff options
author | sr55 <[email protected]> | 2017-03-24 21:05:20 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2017-04-09 20:54:26 +0100 |
commit | 32749fd17f3c270e08667111622939911a1b7f79 (patch) | |
tree | ba3f5a01b6624b9a2a752a6e9ed0706cc130e875 | |
parent | a433b114508e882ddf3531dbf0d65cf6ffcec8a7 (diff) |
Build: Fix to the build scripts to no longer include font directory in mingw builds. It's no longer needed.
-rw-r--r-- | pkg/mingw/module.rules | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/pkg/mingw/module.rules b/pkg/mingw/module.rules index c8d132cef..57b10b2a1 100644 --- a/pkg/mingw/module.rules +++ b/pkg/mingw/module.rules @@ -11,13 +11,11 @@ $(PKG.libhb.zip): | $(STAGE.out.libhb/) $(STAGE.out.cli/):
-$(MKDIR.exe) -p $@
$(CP.exe) HandBrakeCLI.exe $(STAGE.out.cli/)
- $(CP.exe) -R contrib/etc/fonts $(STAGE.out.cli/)/fonts/
$(call STAGE.doc,$(STAGE.out.cli/))
$(STAGE.out.libhb/):
-$(MKDIR.exe) -p $@
$(CP.exe) libhb/hb.dll $(STAGE.out.libhb/)
- $(CP.exe) -R contrib/etc/fonts $(STAGE.out.libhb/)/fonts/
$(call STAGE.doc,$(STAGE.out.libhb/))
|