File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ PYODIDE_ROOT=$(abspath .)
22
33include Makefile.envs
44
5- .PHONY = check
5+ .PHONY : check
66
77CC =emcc
88CXX =em++
Original file line number Diff line number Diff line change @@ -28,7 +28,7 @@ libffi: $(PYINSTALL)/lib/libffi.a
2828
2929libhiwire : $(PYINSTALL ) /lib/libhiwire.a
3030
31- .PHONY = sysconfigdata
31+ .PHONY : sysconfigdata
3232sysconfigdata :
3333 # Generate sysconfigdata. It outputs into a subfolder of build/, and
3434 # the subfolder is written to pybuilddir.txt.
@@ -57,13 +57,13 @@ $(PYINSTALL)/lib/$(PYLIB): $(PYBUILD)/$(PYLIB) sysconfigdata $(PYBUILD)/.patched
5757 cp $(PYBUILD ) /$(PYLIB ) $(PYINSTALL ) /lib/
5858
5959
60- .PHONY = rebuild
60+ .PHONY : rebuild
6161rebuild : sysconfigdata
6262 CFLAGS=" $( CFLAGS_BASE) " emmake make -C $(PYBUILD ) CROSS_COMPILE=yes inclinstall libinstall $(PYLIB ) -j $$ {PYODIDE_JOBS:-3}
6363 cp $(PYBUILD ) /$(PYLIB ) $(PYINSTALL ) /lib/
6464
6565
66- .PHONY = rebuild-all
66+ .PHONY : rebuild-all
6767rebuild-all :
6868# touching abstract.h is enough to force most stuff to be rebuilt...
6969 touch $(PYBUILD)/Include/abstract.h
Original file line number Diff line number Diff line change 1- .PHONY = pyodide-build
1+ .PHONY : pyodide-build
22
33export PYODIDE_ROOT =$(abspath ..)
44include ../Makefile.envs
Original file line number Diff line number Diff line change @@ -55,11 +55,7 @@ export function makeGlobalsProxy(
5555 // If thisArg is a GlobalsProxy it may break APIs that expect the receiver
5656 // to be unmodified. Unwrap any GlobalsProxy before making the call.
5757 thisArg = thisArg ?. [ getObject ] ?? thisArg ;
58- return Reflect . apply (
59- target ,
60- thisArg ,
61- argumentList ,
62- ) ;
58+ return Reflect . apply ( target , thisArg , argumentList ) ;
6359 } ,
6460 getPrototypeOf ( ) {
6561 // @ts -ignore
You can’t perform that action at this time.
0 commit comments