Skip to content

Commit

Permalink
Make the makefile compatible with Busybox
Browse files Browse the repository at this point in the history
Busybox follows stricter POSIX standards, and doesn't support the --mode
and --directory arguments, but rather uses the shorthand variants -m and
-d
  • Loading branch information
PureTryOut committed Mar 25, 2020
1 parent 4156ad4 commit 5b816ac
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Makefile
Expand Up @@ -34,8 +34,8 @@ DESTDIR ?= /tmp/test-mce-dev
PCDIR := /usr/lib/pkgconfig
INCLUDEDIR := /usr/include/mce

INSTALL_DIR := install --mode=755 --directory
INSTALL_DATA := install --mode=644
INSTALL_DIR := install -m 755 -d
INSTALL_DATA := install -m 644


# ----------------------------------------------------------------------------
Expand Down

0 comments on commit 5b816ac

Please sign in to comment.