summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--subr.rtl/rtl.subr (renamed from subr/rtl.subr)0
-rw-r--r--subr.rtl/rtl_complex.subr (renamed from subr/rtl_complex.subr)0
-rw-r--r--subr.rtl/rtl_fetch.subr (renamed from subr/rtl_fetch.subr)0
-rw-r--r--subr.rtl/rtl_fileop.subr (renamed from subr/rtl_fileop.subr)0
-rw-r--r--subr.rtl/rtl_install.subr (renamed from subr/rtl_install.subr)0
-rw-r--r--subr.rtl/rtl_list.subr (renamed from subr/rtl_list.subr)0
-rw-r--r--subr.rtl/rtl_log.subr (renamed from subr/rtl_log.subr)0
-rw-r--r--subr.rtl/rtl_state.subr (renamed from subr/rtl_state.subr)0
-rw-r--r--subr.rtl/rtl_string.subr (renamed from subr/rtl_string.subr)0
-rw-r--r--subr/build_init.subr2
-rw-r--r--subr/pkgtool_init.subr2
11 files changed, 2 insertions, 2 deletions
diff --git a/subr/rtl.subr b/subr.rtl/rtl.subr
index b123555f..b123555f 100644
--- a/subr/rtl.subr
+++ b/subr.rtl/rtl.subr
diff --git a/subr/rtl_complex.subr b/subr.rtl/rtl_complex.subr
index 4894e0f6..4894e0f6 100644
--- a/subr/rtl_complex.subr
+++ b/subr.rtl/rtl_complex.subr
diff --git a/subr/rtl_fetch.subr b/subr.rtl/rtl_fetch.subr
index d0ad54b0..d0ad54b0 100644
--- a/subr/rtl_fetch.subr
+++ b/subr.rtl/rtl_fetch.subr
diff --git a/subr/rtl_fileop.subr b/subr.rtl/rtl_fileop.subr
index dd82311e..dd82311e 100644
--- a/subr/rtl_fileop.subr
+++ b/subr.rtl/rtl_fileop.subr
diff --git a/subr/rtl_install.subr b/subr.rtl/rtl_install.subr
index be940cd9..be940cd9 100644
--- a/subr/rtl_install.subr
+++ b/subr.rtl/rtl_install.subr
diff --git a/subr/rtl_list.subr b/subr.rtl/rtl_list.subr
index 369d3b46..369d3b46 100644
--- a/subr/rtl_list.subr
+++ b/subr.rtl/rtl_list.subr
diff --git a/subr/rtl_log.subr b/subr.rtl/rtl_log.subr
index b91d1374..b91d1374 100644
--- a/subr/rtl_log.subr
+++ b/subr.rtl/rtl_log.subr
diff --git a/subr/rtl_state.subr b/subr.rtl/rtl_state.subr
index 6d539563..6d539563 100644
--- a/subr/rtl_state.subr
+++ b/subr.rtl/rtl_state.subr
diff --git a/subr/rtl_string.subr b/subr.rtl/rtl_string.subr
index e642bebe..e642bebe 100644
--- a/subr/rtl_string.subr
+++ b/subr.rtl/rtl_string.subr
diff --git a/subr/build_init.subr b/subr/build_init.subr
index 0bc544eb..89ff44d1 100644
--- a/subr/build_init.subr
+++ b/subr/build_init.subr
@@ -87,7 +87,7 @@ buildp_init_env() {
printf "Error: failed to set umask(2).\n" >&2; exit 1;
elif ! BUILD_USER="$(id -nu)"; then
printf "Error: failed to obtain username." >&2; exit 1;
- else for _fname in $(find subr -name *.subr); do
+ else for _fname in $(find subr.rtl -name *.subr) $(find subr -name *.subr); do
if ! . "${_fname}"; then
printf "Error: failed to source \`%s'.\n" "${_fname}"; exit 1;
fi;
diff --git a/subr/pkgtool_init.subr b/subr/pkgtool_init.subr
index 2ea27904..76e1c33b 100644
--- a/subr/pkgtool_init.subr
+++ b/subr/pkgtool_init.subr
@@ -20,7 +20,7 @@ pkgtoolp_init_env() {
printf "Error: failed to change working directory to \`${0%/*}'." >&2; exit 1;
elif ! umask 022; then
printf "Error: failed to set umask(2).\n" >&2; exit 1;
- else for _fname in $(find subr -name *.subr); do
+ else for _fname in $(find subr.rtl -name *.subr) $(find subr -name *.subr); do
if ! . "${_fname}"; then
printf "Error: failed to source \`%s'.\n" "${_fname}" >&2; exit 1;
fi;