mirror of
https://gitlab.gnome.org/GNOME/gimp.git
synced 2025-07-03 09:23:24 +00:00

Add a check inside Meson to detect if we're building from a git clone or a dist tarball. (in thie later, don't generated INSTALL.in and git-version.h)
6 lines
139 B
Bash
Executable file
6 lines
139 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
cp -f 'INSTALL' "${MESON_DIST_ROOT}"
|
|
# rm -f "${MESON_DIST_ROOT}/INSTALL.in"
|
|
|
|
cp 'git-version.h' "${MESON_DIST_ROOT}"
|