summaryrefslogtreecommitdiff
path: root/build-aux/meson/post-install.py
Commit message (Collapse)AuthorAgeFilesLines
* post-install: Use gtk4-update-icon-cacheMatthias Clasen2019-04-021-1/+1
| | | | | | I was building GTK in a minimal container without GTK3 installed, and this caused install to fail. We should use the tool that we just installed.
* build: use condense the mkdir calls to onelinersJordan Petridis2019-02-271-4/+2
|
* build: no need to replace path separatorsJordan Petridis2019-02-271-2/+2
| | | | Python APIs accept both `\` and `/` as path separators.
* build: Use python3 for the post install scriptJordan Petridis2019-02-271-1/+1
| | | | | | | | | While *some* systems alias python to python3 nowdays, this is not true for eveything. Especially systems that can potentially offer both python2 and python3. According to both PEP 394 and PEP 441 its recommended to always add the 3 in the shebang.
* build: Make post-install script a Python scriptChun-wei Fan2018-12-061-0/+33
The existing post-install shell script will most likely not work on Visual Studio builds as there is normally no shell interpreter installed on the system where the build is done, but the build is normally done in a standard Windows cmd.exe console. Instead, use a Python script so that it will work on the platforms that Python supports.