mirror of
https://github.com/fosslinux/live-bootstrap.git
synced 2026-03-02 01:18:08 +01:00
steps/linux-headers-4.14.341-openela: Fix option ordering of mkdir -p
With a POSIX conforming getopt() options ends at first non-option, so the -p has to be before the arguments.
This commit is contained in:
parent
35c358fe5a
commit
3f3893e45f
1 changed files with 1 additions and 1 deletions
|
|
@ -27,7 +27,7 @@ src_install() {
|
|||
# We "compile" the headers here because it is easier
|
||||
for d in include/uapi arch/x86/include/uapi; do
|
||||
cd "${d}"
|
||||
find . -type d -exec mkdir "${DESTDIR}${PREFIX}/include/{}" -p \;
|
||||
find . -type d -exec mkdir -p "${DESTDIR}${PREFIX}/include/{}" \;
|
||||
headers="$(find . -type f -name "*.h")"
|
||||
cd "${base_dir}"
|
||||
for h in ${headers}; do
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue