We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9218eb2 commit 5af69f9Copy full SHA for 5af69f9
meson.build
@@ -194,8 +194,18 @@ if plat == 'win' and host_machine.cpu_family().startswith('x86')
194
check: true,
195
)
196
197
+ foreach lib : dlls
198
+ if not fs.exists(lib)
199
+ error(f'''
200
+ File "@lib@" does not exist.
201
+ Please try to delete "prebuilt_downloads/", "prebuilt-x64/" and "prebuilt-x86/" directories, and retry the installation.
202
+ ''')
203
+ endif
204
+ endforeach
205
+
206
# put dlls in root of install
207
install_data(dlls, install_dir: pg_dir, install_tag: 'pg-tag')
208
209
else
210
bases = ['/usr/local', '/usr', '/opt/homebrew', '/opt/local']
211
foreach inc_dir : bases
0 commit comments