diff options
author | Igor Pashev <pashev.igor@gmail.com> | 2012-07-03 22:27:41 +0000 |
---|---|---|
committer | Igor Pashev <pashev.igor@gmail.com> | 2012-07-03 22:27:41 +0000 |
commit | 46ad6945e6fff4e2cb52b6a0b49c68946876f8a0 (patch) | |
tree | 072a0dd6f5579e6ffa2bf9e19720fecb07ea1dcc /dh_illumos_gate | |
parent | 80d5435de9ac11b29a5595628385690a401cefb2 (diff) | |
download | dh-illumos-46ad6945e6fff4e2cb52b6a0b49c68946876f8a0.tar.gz |
Use quotes
Diffstat (limited to 'dh_illumos_gate')
-rwxr-xr-x | dh_illumos_gate | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/dh_illumos_gate b/dh_illumos_gate index 937f088..c0a1784 100755 --- a/dh_illumos_gate +++ b/dh_illumos_gate @@ -176,10 +176,10 @@ if (open (ENV, '>', $env)) { print ENV "export GCC_ROOT='/usr'\n"; print ENV "export i386_XARCH='-m32'\n"; print ENV "export i386_AS_XARCH='-xarch=i386'\n"; - print ENV "export ROOTFS_LIBDIR=\$ROOT/lib/$multiarch32\n"; - print ENV "export ROOTFS_LIBDIR64=\$ROOT/lib/$multiarch64\n"; - print ENV "export ROOTLIBDIR=\$ROOT/usr/lib/$multiarch32\n"; - print ENV "export ROOTLIBDIR64=\$ROOT/usr/lib/$multiarch64\n"; + print ENV "export ROOTFS_LIBDIR='\$ROOT/lib/$multiarch32'\n"; + print ENV "export ROOTFS_LIBDIR64='\$ROOT/lib/$multiarch64'\n"; + print ENV "export ROOTLIBDIR='\$ROOT/usr/lib/$multiarch32'\n"; + print ENV "export ROOTLIBDIR64='\$ROOT/usr/lib/$multiarch64'\n"; close(ENV); } else { error("Failed to write `$env': $!"); |