diff options
author | Hans-Christoph Steiner <eighthave@users.sourceforge.net> | 2007-11-04 06:52:13 +0000 |
---|---|---|
committer | Hans-Christoph Steiner <eighthave@users.sourceforge.net> | 2007-11-04 06:52:13 +0000 |
commit | 4c9086e673c81d08de05aa6525ff9eae7f9afdfb (patch) | |
tree | 98d857202ed2f01ebc628a7ce5fd409f6273448a /scripts | |
parent | bc66f258b8b7952c2fc5feca9612e98655504d24 (diff) |
fixed bad tagname for InnoSetup preventing successful build on Windows
svn path=/trunk/; revision=8928
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/generate-pd-settings-files.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/generate-pd-settings-files.sh b/scripts/generate-pd-settings-files.sh index 0c81496f..2df87797 100755 --- a/scripts/generate-pd-settings-files.sh +++ b/scripts/generate-pd-settings-files.sh @@ -86,7 +86,7 @@ print_windows_fontpath () for fontpath in $WINDOWS_FONTPATH; do ((++j)) echo "\"path${j}\"=${fontpath}" >> $WINDOWS_FILE - echo "Root: HKLM; SubKey: SOFTWARE\Pd; ValueType: string; ValueName: path${j}; ValueData: ${fontpath}; Tasks: loadlibraries; Flags: uninsdeletekey" >> $WINDOWS_INNO_FILE + echo "Root: HKLM; SubKey: SOFTWARE\Pd; ValueType: string; ValueName: path${j}; ValueData: ${fontpath}; Tasks: libs; Flags: uninsdeletekey" >> $WINDOWS_INNO_FILE done } |