From 8ca7a33402a198a5d9405f8bb19a57e59a13867d Mon Sep 17 00:00:00 2001 From: Crayon2000 Date: Thu, 22 Feb 2024 22:32:23 -0500 Subject: [PATCH] Create folders when installing libraries Apparently sometimes they don't exist. --- CHANGELOG.md | 5 +++++ GRRLIB/GRRLIB/Makefile | 1 + 2 files changed, 6 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8119bca..e0ad3c2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,10 @@ All notable changes to this project will be documented in this file. +## [Unreleased][] + +- TODO + ## [4.5.0][] - 2024-02-11 - Fixed compatibility issues with devkitPPC release 39. @@ -117,6 +121,7 @@ All notable changes to this project will be documented in this file. - New Bitmap FX - Add `GRRLIB_Exit()` to free the memory allocated by GRRLIB +[unreleased]: https://github.com/GRRLIB/GRRLIB/compare/v4.5.0...HEAD [4.5.0]: https://github.com/GRRLIB/GRRLIB/compare/v4.4.1...v4.5.0 [4.4.1]: https://github.com/GRRLIB/GRRLIB/compare/v4.4.0...v4.4.1 [4.4.0]: https://github.com/GRRLIB/GRRLIB/compare/4.3.2...v4.4.0 diff --git a/GRRLIB/GRRLIB/Makefile b/GRRLIB/GRRLIB/Makefile index 9310d62..d7840df 100644 --- a/GRRLIB/GRRLIB/Makefile +++ b/GRRLIB/GRRLIB/Makefile @@ -94,6 +94,7 @@ clean: #--------------------------------------------------------------------------------- install: + @mkdir --parents $(DESTDIR)/lib $(DESTDIR)/include @cp --force $(OUTPUT) $(DESTDIR)/lib @cp --force --parents $(HDR) $(DESTDIR)/include