mirror of
https://gitlab.com/sortix/sortix.git
synced 2023-02-13 20:55:38 -05:00
Add libexec directory.
This commit is contained in:
parent
9675bd7475
commit
7f4419bae7
3 changed files with 3 additions and 1 deletions
2
Makefile
2
Makefile
|
@ -62,7 +62,7 @@ sysroot-fsh:
|
|||
mkdir -p "$(SYSROOT)/$$DIRNAME/$(HOST)" \
|
||||
) || exit $$?; done;
|
||||
mkdir -p "$(SYSROOT)/$(HOST)"
|
||||
for DIRNAME in bin lib; do (\
|
||||
for DIRNAME in bin lib libexec; do (\
|
||||
mkdir -p "$(SYSROOT)/$(HOST)/$$DIRNAME" \
|
||||
) || exit $$?; done;
|
||||
mkdir -p "$(SYSROOT)/etc/skel"
|
||||
|
|
|
@ -95,6 +95,7 @@ This as an incomplete list of the common top level directories in Sortix.
|
|||
* /$cputype - Files for $cputype.
|
||||
* /$cputype/bin - Programs for $cputype.
|
||||
* /$cputype/lib - Shared libaries for $cputype.
|
||||
* /$cputype/libexec - Shared libaries for $cputype.
|
||||
|
||||
Some of these directories not be present or empty on your installation.
|
||||
|
||||
|
|
|
@ -48,6 +48,7 @@ fsh:
|
|||
mkdir -p $(ROOT)/tmp
|
||||
mkdir -p $(ROOT)/$(cputype)/bin
|
||||
mkdir -p $(ROOT)/$(cputype)/lib
|
||||
mkdir -p $(ROOT)/$(cputype)/libexec
|
||||
|
||||
# Install the system headers.
|
||||
system-headers:
|
||||
|
|
Loading…
Add table
Reference in a new issue