Skip to content

Commit 7195c96

Browse files
committed
Fix standard library directory structure
1 parent 65d959c commit 7195c96

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ endif
123123
#---------------------------------------------------------------------------------
124124
clean:
125125
$(MAKE) -C $(INTERPRETER) clean
126-
@rm -fr $(BUILD) $(OUTPUT).3dsx $(OUTPUT).smdh $(OUTPUT).elf
126+
@rm -fr $(BUILD) $(OUTPUT).3dsx $(OUTPUT).smdh $(OUTPUT).elf $(OUTPUT)-$(APP_VERSION)*
127127

128128
#---------------------------------------------------------------------------------
129129
else

interpreter/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ distPython: makePython
7070
cp $(ANAME) $(OUTDIR)/lib
7171
cp -r $(PYDIR)/Include/* $(OUTDIR)/include
7272
cp $(PYDIR)/pyconfig.h $(OUTDIR)/include
73-
zip -r $(OUTDIR)/python_lib.zip $(PYDIR)/Lib/
73+
cd $(PYDIR)/Lib && zip -r ../../$(OUTDIR)/python_lib.zip .
7474

7575
makePython: patchPython
7676
cd $(PYDIR) && \

0 commit comments

Comments
 (0)