mirror of
https://gitlab.freedesktop.org/plymouth/plymouth.git
synced 2026-03-14 02:50:36 +01:00
The scripts hard-coded the paths for LIBEXECDIR and DATADIR, unless passed as environment variables. Instead of doing this, which breaks if plymouth is installed outside of /usr, set these derived from the configure $libexecdir and $datadir variables just as we do for pkg-config, etc. Since we use so many variables, it makes more sense to generate these scripts from config.status rather than having special Makefile rules for them.
14 lines
642 B
Makefile
14 lines
642 B
Makefile
noinst_SCRIPTS = new-object.sh
|
|
|
|
initrdscriptdir = $(libexecdir)/plymouth
|
|
initrdscript_SCRIPTS = plymouth-update-initrd plymouth-generate-initrd plymouth-populate-initrd
|
|
|
|
sbinscriptsdir = $(sbindir)
|
|
sbinscripts_SCRIPTS = plymouth-set-default-theme
|
|
|
|
EXTRA_DIST= plymouth-update-initrd \
|
|
plymouth-generate-initrd.in \
|
|
plymouth-populate-initrd.in \
|
|
plymouth-set-default-theme.in \
|
|
$(noinst_SCRIPTS) \
|
|
default.cfg
|