Skip to content

Commit d3d636c

Browse files
PataterWinterMute
authored andcommitted
crtls: Use exported make
Without this, when building on platforms where 'make' is not GNU Make, building crtls will fail. The Makefiles used to build crtls depend on GNU Make and will not work on e.g. BSD Make.
1 parent 78eb432 commit d3d636c

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

dka64/scripts/build-crtls.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,4 @@ cd $BUILDDIR
1212

1313
tar -xvf $SRCDIR/devkita64-rules-$DKA64_RULES_VER.tar.gz
1414
cd devkita64-rules-$DKA64_RULES_VER
15-
make install
15+
$MAKE install

dkarm-eabi/scripts/build-crtls.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ cd $BUILDDIR
1313

1414
tar -xvf $SRCDIR/devkitarm-rules-$DKARM_RULES_VER.tar.gz
1515
cd devkitarm-rules-$DKARM_RULES_VER
16-
make install
16+
$MAKE install
1717

1818
#---------------------------------------------------------------------------------
1919
# Install and build the crt0 files
@@ -22,5 +22,5 @@ cd $BUILDDIR
2222

2323
tar -xvf $SRCDIR/devkitarm-crtls-$DKARM_CRTLS_VER.tar.gz
2424
cd devkitarm-crtls-$DKARM_CRTLS_VER
25-
make install
25+
$MAKE install
2626

dkppc/scripts/build-crtls.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,4 @@ cd $BUILDDIR
1313

1414
tar -xvf $SRCDIR/devkitppc-rules-$DKPPC_RULES_VER.tar.gz
1515
cd devkitppc-rules-$DKPPC_RULES_VER
16-
make install
16+
$MAKE install

0 commit comments

Comments
 (0)