commit e08b1822d0bafdc85425de5596295fc09a859e14
parent 864110fd54a2fdf9bfd482af66909cf13d1d46d5
Auteur: Loïc Daignault-Pichette <ldp@asteride.xyz>
Date: Fri, 5 Sep 2025 19:16:00 -0400
[bog] Créer le dossier parent avant d’installer
L’absence du dossier ${PREFIX} fait échouer l’installation sur les
sytèmes où il n’existe pas.
Diffstat:
1 fichier modifié, 1 insertion(+), 0 suppressions(-)
diff --git a/Makefile b/Makefile
@@ -8,6 +8,7 @@ execrom: execrom.c
${CC} ${COPT} -o "$@" execrom.c
install: execrom
+ mkdir -p ${PREFIX}
install -m 755 execrom ${PREFIX}/execrom
uninstall: