diff options
author | Igor Pashev <pashev.igor@gmail.com> | 2012-07-04 10:30:11 +0000 |
---|---|---|
committer | Igor Pashev <pashev.igor@gmail.com> | 2012-07-04 10:30:11 +0000 |
commit | 56d747f4d225aa99cf9211f6dd04d38cbcf41a1d (patch) | |
tree | acaa5704efeedb60178d82d14d7c6ea493780d8e | |
parent | 46ad6945e6fff4e2cb52b6a0b49c68946876f8a0 (diff) | |
download | dh-illumos-56d747f4d225aa99cf9211f6dd04d38cbcf41a1d.tar.gz |
Fixed quotes
-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 c0a1784..4ded919 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': $!"); |