diff options
author | Andras Timar <andras.timar@collabora.com> | 2013-09-20 05:33:43 -0700 |
---|---|---|
committer | Andras Timar <andras.timar@collabora.com> | 2013-09-20 05:34:23 -0700 |
commit | 1a4258667ecd76cebc823994fd366ec7b622fd42 (patch) | |
tree | bb1080e5138fe704613b7d76be094b852786ce45 /configure.ac | |
parent | 89e5ef948564d4bcea02c845d6f959dddd99129c (diff) |
fix find_al() under 64-bit Cygwin
Change-Id: I2797763f64733a83858bb08d760c9c453d63e1f8
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index 967b728b9432..16ce33eb319b 100644 --- a/configure.ac +++ b/configure.ac @@ -5063,7 +5063,7 @@ find_al() unset altest - for x in `ls /proc/registry/HKEY_LOCAL_MACHINE/SOFTWARE/Microsoft/Microsoft\ SDKs/Windows`; do + for x in `ls /proc/registry32/HKEY_LOCAL_MACHINE/SOFTWARE/Microsoft/Microsoft\ SDKs/Windows`; do reg_get_value_32 "HKEY_LOCAL_MACHINE/SOFTWARE/Microsoft/Microsoft SDKs/Windows/$x/WinSDK-NetFx40Tools/InstallationFolder" if test -n "$regvalue" -a \( -f "$regvalue/al.exe" -o -f "$regvalue/bin/al.exe" \); then altest=$regvalue |