summaryrefslogtreecommitdiff
path: root/src/chroot-tools/libremakepkg
diff options
context:
space:
mode:
authorbill-auger <mr.j.spam.me@gmail.com>2020-08-09 00:35:39 -0400
committerbill-auger <mr.j.spam.me@gmail.com>2020-11-20 22:51:10 -0500
commitc95eb790a879bc3e2128e5120ae76cc3f95ac74c (patch)
tree182e3155978ab68250e1aa887746eb40aa8829e1 /src/chroot-tools/libremakepkg
parent41346f5871f10d261f9202e8d66a8e1c04124a32 (diff)
normalize `source` calls
Diffstat (limited to 'src/chroot-tools/libremakepkg')
-rwxr-xr-xsrc/chroot-tools/libremakepkg13
1 files changed, 7 insertions, 6 deletions
diff --git a/src/chroot-tools/libremakepkg b/src/chroot-tools/libremakepkg
index d6bb17f..274600d 100755
--- a/src/chroot-tools/libremakepkg
+++ b/src/chroot-tools/libremakepkg
@@ -24,9 +24,10 @@ set -euE
# You should have received a copy of the GNU General Public License
# along with Parabola. If not, see <http://www.gnu.org/licenses/>.
-. "$(librelib conf)"
-. "$(librelib messages)"
-. "$(librelib chroot/makechrootpkg)"
+
+source "$(librelib conf)"
+source "$(librelib messages)"
+source "$(librelib chroot/makechrootpkg)"
set -o pipefail
shopt -s nullglob
@@ -47,9 +48,9 @@ hook_pre_build=(:)
hook_post_build=(:)
hook_check_pkgbuild=(:)
hook_check_pkg=(:)
-. "$(librelib chroot/hooks-chcleanup.sh)"
-. "$(librelib chroot/hooks-check.sh)"
-. "$(librelib chroot/hooks-distcc.sh)"
+source "$(librelib chroot/hooks-chcleanup.sh)"
+source "$(librelib chroot/hooks-check.sh)"
+source "$(librelib chroot/hooks-distcc.sh)"
# Boring/mundane functions #####################################################