From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 6981D138010 for ; Sun, 23 Sep 2012 03:04:34 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id F3041E0128; Sun, 23 Sep 2012 03:04:16 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id A8C6BE0128 for ; Sun, 23 Sep 2012 03:04:16 +0000 (UTC) Received: from hornbill.gentoo.org (hornbill.gentoo.org [94.100.119.163]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id B17ED33D149 for ; Sun, 23 Sep 2012 03:04:15 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id 5EC69E5444 for ; Sun, 23 Sep 2012 03:04:14 +0000 (UTC) From: "Jorge Manuel B. S. Vicetto" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Jorge Manuel B. S. Vicetto" Message-ID: <1348282441.57986490ef5e7171c039deedf4371315153d2a54.jmbsvicetto@gentoo> Subject: [gentoo-commits] proj/catalyst:master commit in: targets/livecd-stage2/, targets/livecd-stage1/, targets/stage3/, targets/stage1/, ... X-VCS-Repository: proj/catalyst X-VCS-Files: targets/embedded/embedded-controller.sh targets/grp/grp-controller.sh targets/livecd-stage1/livecd-stage1-controller.sh targets/livecd-stage2/livecd-stage2-controller.sh targets/netboot/netboot-combine.sh targets/netboot/netboot-controller.sh targets/netboot2/netboot2-controller.sh targets/stage1/stage1-controller.sh targets/stage2/stage2-controller.sh targets/stage3/stage3-controller.sh targets/stage4/stage4-controller.sh targets/support/bootloader-setup.sh targets/support/create-iso.sh targets/support/netboot2-final.sh targets/support/target_image_setup.sh targets/tinderbox/tinderbox-controller.sh X-VCS-Directories: targets/livecd-stage2/ targets/livecd-stage1/ targets/stage3/ targets/stage1/ targets/grp/ targets/stage4/ targets/embedded/ targets/stage2/ targets/netboot/ targets/tinderbox/ targets/support/ targets/netboot2/ X-VCS-Committer: jmbsvicetto X-VCS-Committer-Name: Jorge Manuel B. S. Vicetto X-VCS-Revision: 57986490ef5e7171c039deedf4371315153d2a54 X-VCS-Branch: master Date: Sun, 23 Sep 2012 03:04:14 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: bf130610-fdd2-4148-b82f-06545529c32d X-Archives-Hash: b146ed63dd58bf02a3293fbf904c7650 commit: 57986490ef5e7171c039deedf4371315153d2a54 Author: Jorge Manuel B. S. Vicetto (jmbsvicetto) gentoo org> AuthorDate: Sat Sep 22 02:54:01 2012 +0000 Commit: Jorge Manuel B. S. Vicetto gentoo org> CommitDate: Sat Sep 22 02:54:01 2012 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/catalyst.git;a=commit;h=57986490 Replace "." with "source". --- targets/embedded/embedded-controller.sh | 4 ++-- targets/grp/grp-controller.sh | 2 +- targets/livecd-stage1/livecd-stage1-controller.sh | 2 +- targets/livecd-stage2/livecd-stage2-controller.sh | 4 ++-- targets/netboot/netboot-combine.sh | 6 +++--- targets/netboot/netboot-controller.sh | 4 ++-- targets/netboot2/netboot2-controller.sh | 4 ++-- targets/stage1/stage1-controller.sh | 2 +- targets/stage2/stage2-controller.sh | 2 +- targets/stage3/stage3-controller.sh | 2 +- targets/stage4/stage4-controller.sh | 2 +- targets/support/bootloader-setup.sh | 4 ++-- targets/support/create-iso.sh | 4 ++-- targets/support/netboot2-final.sh | 4 ++-- targets/support/target_image_setup.sh | 4 ++-- targets/tinderbox/tinderbox-controller.sh | 2 +- 16 files changed, 26 insertions(+), 26 deletions(-) diff --git a/targets/embedded/embedded-controller.sh b/targets/embedded/embedded-controller.sh index a1a82d0..52ef3a4 100644 --- a/targets/embedded/embedded-controller.sh +++ b/targets/embedded/embedded-controller.sh @@ -1,7 +1,7 @@ #!/bin/bash -. ${clst_sharedir}/targets/support/functions.sh -. ${clst_sharedir}/targets/support/filesystem-functions.sh +source ${clst_sharedir}/targets/support/functions.sh +source ${clst_sharedir}/targets/support/filesystem-functions.sh case ${1} in enter) diff --git a/targets/grp/grp-controller.sh b/targets/grp/grp-controller.sh index 5069777..cac3198 100644 --- a/targets/grp/grp-controller.sh +++ b/targets/grp/grp-controller.sh @@ -1,6 +1,6 @@ #!/bin/bash -. ${clst_sharedir}/targets/support/functions.sh +source ${clst_sharedir}/targets/support/functions.sh case $1 in enter) diff --git a/targets/livecd-stage1/livecd-stage1-controller.sh b/targets/livecd-stage1/livecd-stage1-controller.sh index 1099b1d..5be36f0 100644 --- a/targets/livecd-stage1/livecd-stage1-controller.sh +++ b/targets/livecd-stage1/livecd-stage1-controller.sh @@ -1,5 +1,5 @@ -. ${clst_sharedir}/targets/support/functions.sh +source ${clst_sharedir}/targets/support/functions.sh ## START RUNSCRIPT diff --git a/targets/livecd-stage2/livecd-stage2-controller.sh b/targets/livecd-stage2/livecd-stage2-controller.sh index fbdeac2..44a0e58 100644 --- a/targets/livecd-stage2/livecd-stage2-controller.sh +++ b/targets/livecd-stage2/livecd-stage2-controller.sh @@ -1,6 +1,6 @@ -. ${clst_sharedir}/targets/support/functions.sh -. ${clst_sharedir}/targets/support/filesystem-functions.sh +source ${clst_sharedir}/targets/support/functions.sh +source ${clst_sharedir}/targets/support/filesystem-functions.sh case $1 in pre-kmerge) diff --git a/targets/netboot/netboot-combine.sh b/targets/netboot/netboot-combine.sh index ad3916c..7983e12 100644 --- a/targets/netboot/netboot-combine.sh +++ b/targets/netboot/netboot-combine.sh @@ -1,8 +1,8 @@ #!/bin/bash -. ${clst_sharedir}/targets/support/chroot-functions.sh -. ${clst_sharedir}/targets/support/functions.sh -. ${clst_sharedir}/targets/support/filesystem-functions.sh +source ${clst_sharedir}/targets/support/chroot-functions.sh +source ${clst_sharedir}/targets/support/functions.sh +source ${clst_sharedir}/targets/support/filesystem-functions.sh update_env_settings diff --git a/targets/netboot/netboot-controller.sh b/targets/netboot/netboot-controller.sh index c3fc091..6352d7a 100644 --- a/targets/netboot/netboot-controller.sh +++ b/targets/netboot/netboot-controller.sh @@ -1,7 +1,7 @@ #!/bin/bash -. ${clst_sharedir}/targets/support/functions.sh -. ${clst_sharedir}/targets/support/filesystem-functions.sh +source ${clst_sharedir}/targets/support/functions.sh +source ${clst_sharedir}/targets/support/filesystem-functions.sh case ${1} in diff --git a/targets/netboot2/netboot2-controller.sh b/targets/netboot2/netboot2-controller.sh index a0d26b8..03e4db4 100644 --- a/targets/netboot2/netboot2-controller.sh +++ b/targets/netboot2/netboot2-controller.sh @@ -1,7 +1,7 @@ #!/bin/bash -. ${clst_sharedir}/targets/support/functions.sh -. ${clst_sharedir}/targets/support/filesystem-functions.sh +source ${clst_sharedir}/targets/support/functions.sh +source ${clst_sharedir}/targets/support/filesystem-functions.sh case ${1} in build_packages) diff --git a/targets/stage1/stage1-controller.sh b/targets/stage1/stage1-controller.sh index 70a6634..a07e2f0 100644 --- a/targets/stage1/stage1-controller.sh +++ b/targets/stage1/stage1-controller.sh @@ -1,6 +1,6 @@ #!/bin/bash -. ${clst_sharedir}/targets/support/functions.sh +source ${clst_sharedir}/targets/support/functions.sh case $1 in enter) diff --git a/targets/stage2/stage2-controller.sh b/targets/stage2/stage2-controller.sh index cad9080..ee41687 100644 --- a/targets/stage2/stage2-controller.sh +++ b/targets/stage2/stage2-controller.sh @@ -1,6 +1,6 @@ #!/bin/bash -. ${clst_sharedir}/targets/support/functions.sh +source ${clst_sharedir}/targets/support/functions.sh # Only put commands in this section that you want every target to execute. # This is a global default file and will affect every target diff --git a/targets/stage3/stage3-controller.sh b/targets/stage3/stage3-controller.sh index f97ee08..81aeda7 100644 --- a/targets/stage3/stage3-controller.sh +++ b/targets/stage3/stage3-controller.sh @@ -1,6 +1,6 @@ #!/bin/bash -. ${clst_sharedir}/targets/support/functions.sh +source ${clst_sharedir}/targets/support/functions.sh # Only put commands in this section that you want every target to execute. # This is a global default file and will affect every target diff --git a/targets/stage4/stage4-controller.sh b/targets/stage4/stage4-controller.sh index d95728e..b056ade 100644 --- a/targets/stage4/stage4-controller.sh +++ b/targets/stage4/stage4-controller.sh @@ -1,6 +1,6 @@ #!/bin/bash -. ${clst_sharedir}/targets/support/functions.sh +source ${clst_sharedir}/targets/support/functions.sh # Only put commands in this section that you want every target to execute. # This is a global default file and will affect every target diff --git a/targets/support/bootloader-setup.sh b/targets/support/bootloader-setup.sh index 2fa44e0..2832b9f 100644 --- a/targets/support/bootloader-setup.sh +++ b/targets/support/bootloader-setup.sh @@ -1,6 +1,6 @@ #!/bin/bash -. ${clst_sharedir}/targets/support/functions.sh -. ${clst_sharedir}/targets/support/filesystem-functions.sh +source ${clst_sharedir}/targets/support/functions.sh +source ${clst_sharedir}/targets/support/filesystem-functions.sh # $1 is the destination root diff --git a/targets/support/create-iso.sh b/targets/support/create-iso.sh index 06a1a75..922e547 100644 --- a/targets/support/create-iso.sh +++ b/targets/support/create-iso.sh @@ -1,7 +1,7 @@ #!/bin/bash -. ${clst_sharedir}/targets/support/functions.sh -. ${clst_sharedir}/targets/support/filesystem-functions.sh +source ${clst_sharedir}/targets/support/functions.sh +source ${clst_sharedir}/targets/support/filesystem-functions.sh ## START RUNSCRIPT diff --git a/targets/support/netboot2-final.sh b/targets/support/netboot2-final.sh index 2dbce72..0a2aa78 100644 --- a/targets/support/netboot2-final.sh +++ b/targets/support/netboot2-final.sh @@ -1,7 +1,7 @@ #!/bin/bash -. ${clst_sharedir}/targets/support/functions.sh -. ${clst_sharedir}/targets/support/filesystem-functions.sh +source ${clst_sharedir}/targets/support/functions.sh +source ${clst_sharedir}/targets/support/filesystem-functions.sh extract_kernels ${clst_target_path}boot diff --git a/targets/support/target_image_setup.sh b/targets/support/target_image_setup.sh index c55aba6..b9e2781 100644 --- a/targets/support/target_image_setup.sh +++ b/targets/support/target_image_setup.sh @@ -1,6 +1,6 @@ -. ${clst_sharedir}/targets/support/functions.sh -. ${clst_sharedir}/targets/support/filesystem-functions.sh +source ${clst_sharedir}/targets/support/functions.sh +source ${clst_sharedir}/targets/support/filesystem-functions.sh # Make the directory if it doesnt exist mkdir -p $1 diff --git a/targets/tinderbox/tinderbox-controller.sh b/targets/tinderbox/tinderbox-controller.sh index 0409a2e..d7d89cb 100644 --- a/targets/tinderbox/tinderbox-controller.sh +++ b/targets/tinderbox/tinderbox-controller.sh @@ -1,6 +1,6 @@ #!/bin/bash -. ${clst_sharedir}/targets/support/functions.sh +source ${clst_sharedir}/targets/support/functions.sh case $1 in run)