]> git.corax.cc Git - toolbox/commit
Makefile: Correctly create IPC directories
authorMatthias Kruk <m@m10k.eu>
Tue, 14 Feb 2023 12:07:06 +0000 (21:07 +0900)
committerMatthias Kruk <m@m10k.eu>
Tue, 14 Feb 2023 12:07:06 +0000 (21:07 +0900)
commitcd3beac27b85f6126b7ab0cf9a4ec93af7cdb79b
tree28d04728e2bd8f9edc917b9e8baef03766bdd89a
parentcb736e1edf7b861ea7e339428a4c9accc0aec021
Makefile: Correctly create IPC directories

The command that is supposed to create the directory structure for
IPC messaging is written using brace expansion, despite not being
a shell script. Because GNU Make does not support brace expansion,
it ends up creating an incorrect directory structure.

This commit changes the install rule of the Makefile to avoid brace
expansion.
Makefile