mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
Fix for windres 2.36 [Bug #17602]
Add --preprocessor and --preprocessor-arg for each preprocessor command arguments, as windres 2.36 requires preprocessor name and arguments to be separated to respect spaces in these paths.
This commit is contained in:
parent
23a833ee67
commit
952b2dcc88
1 changed files with 4 additions and 1 deletions
|
@ -4,7 +4,10 @@ include Makefile
|
|||
|
||||
ENABLE_SHARED=@ENABLE_SHARED@
|
||||
DLLWRAP = @DLLWRAP@ --target=@target_os@ --driver-name="$(CC)"
|
||||
WINDRES = @WINDRES@ --preprocessor="$(CPP) -xc" -DRC_INVOKED
|
||||
windres-cpp := $(CPP) -xc
|
||||
windres-cpp := --preprocessor=$(firstword $(windres-cpp)) \
|
||||
$(addprefix --preprocessor-arg=,$(wordlist 2,$(words $(windres-cpp)),$(windres-cpp)))
|
||||
WINDRES = @WINDRES@ $(windres-cpp) -DRC_INVOKED
|
||||
STRIP = @STRIP@
|
||||
|
||||
ifeq (@target_os@,cygwin)
|
||||
|
|
Loading…
Add table
Reference in a new issue