Add libexec directory.

This commit is contained in:
Jonas 'Sortie' Termansen 2014-07-11 22:50:45 +02:00
parent 9675bd7475
commit 7f4419bae7
3 changed files with 3 additions and 1 deletions

View File

@ -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"

View File

@ -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.

View File

@ -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: