summaryrefslogtreecommitdiffstats
path: root/pkgs/build-support/gcc-cross-wrapper
diff options
context:
space:
mode:
authorEelco Dolstra <eelco.dolstra@logicblox.com>2005-12-05 14:11:09 +0000
committerEelco Dolstra <eelco.dolstra@logicblox.com>2005-12-05 14:11:09 +0000
commit82e678362f25dfefd8c9952e4fa1ab3c1aca9ce6 (patch)
tree5f954fcb6549b8af8309210fd7f35d336f7e5a8d /pkgs/build-support/gcc-cross-wrapper
parent7589df67ae606a37f6ec26baaa25f7578f7ae8c1 (diff)
* "." -> "source".
svn path=/nixpkgs/trunk/; revision=4335
Diffstat (limited to 'pkgs/build-support/gcc-cross-wrapper')
-rw-r--r--pkgs/build-support/gcc-cross-wrapper/builder.sh4
-rw-r--r--pkgs/build-support/gcc-cross-wrapper/gcc-wrapper.sh8
-rw-r--r--pkgs/build-support/gcc-cross-wrapper/ld-wrapper.sh8
3 files changed, 10 insertions, 10 deletions
diff --git a/pkgs/build-support/gcc-cross-wrapper/builder.sh b/pkgs/build-support/gcc-cross-wrapper/builder.sh
index 48a29694f672..18fdb511d681 100644
--- a/pkgs/build-support/gcc-cross-wrapper/builder.sh
+++ b/pkgs/build-support/gcc-cross-wrapper/builder.sh
@@ -1,5 +1,5 @@
-. $stdenv/setup
-. $substitute
+source $stdenv/setup
+source $substitute
# Force gcc to use ld-wrapper.sh when calling ld.
diff --git a/pkgs/build-support/gcc-cross-wrapper/gcc-wrapper.sh b/pkgs/build-support/gcc-cross-wrapper/gcc-wrapper.sh
index 7de57afc3f81..d514b57e28a0 100644
--- a/pkgs/build-support/gcc-cross-wrapper/gcc-wrapper.sh
+++ b/pkgs/build-support/gcc-cross-wrapper/gcc-wrapper.sh
@@ -1,14 +1,14 @@
#! @shell@ -e
if test -n "$NIX_GCC_WRAPPER_START_HOOK"; then
- . "$NIX_GCC_WRAPPER_START_HOOK"
+ source "$NIX_GCC_WRAPPER_START_HOOK"
fi
if test -z "$NIX_GLIBC_FLAGS_SET"; then
- . @out@/nix-support/add-flags
+ source @out@/nix-support/add-flags
fi
-. @out@/nix-support/utils
+source @out@/nix-support/utils
# Figure out if linker flags should be passed. GCC prints annoying
@@ -109,7 +109,7 @@ if test "$NIX_DEBUG" = "1"; then
fi
if test -n "$NIX_GCC_WRAPPER_EXEC_HOOK"; then
- . "$NIX_GCC_WRAPPER_EXEC_HOOK"
+ source "$NIX_GCC_WRAPPER_EXEC_HOOK"
fi
diff --git a/pkgs/build-support/gcc-cross-wrapper/ld-wrapper.sh b/pkgs/build-support/gcc-cross-wrapper/ld-wrapper.sh
index fbf7186ad276..cc1b125804a4 100644
--- a/pkgs/build-support/gcc-cross-wrapper/ld-wrapper.sh
+++ b/pkgs/build-support/gcc-cross-wrapper/ld-wrapper.sh
@@ -1,14 +1,14 @@
#! @shell@ -e
if test -n "$NIX_LD_WRAPPER_START_HOOK"; then
- . "$NIX_LD_WRAPPER_START_HOOK"
+ source "$NIX_LD_WRAPPER_START_HOOK"
fi
if test -z "$NIX_GLIBC_FLAGS_SET"; then
- . @out@/nix-support/add-flags
+ source @out@/nix-support/add-flags
fi
-. @out@/nix-support/utils
+source @out@/nix-support/utils
# Optionally filter out paths not refering to the store.
@@ -139,7 +139,7 @@ if test "$NIX_DEBUG" = "1"; then
fi
if test -n "$NIX_LD_WRAPPER_EXEC_HOOK"; then
- . "$NIX_LD_WRAPPER_EXEC_HOOK"
+ source "$NIX_LD_WRAPPER_EXEC_HOOK"
fi
exec @ld@ ${extraBefore[@]} "${params[@]}" ${extra[@]}