mirror of
https://github.com/flatpak/flatpak.git
synced 2026-03-14 13:15:35 -04:00
Make the icon validator reexec itself inside a sandbos if the --sandbox option is given. This lets us share the sandbox setup between all users of this tool. An additional advantage is that this makes the sandbox setup code testable by iself. Closes: #2618 Approved by: alexlarsson
10 lines
268 B
PHP
10 lines
268 B
PHP
libexec_PROGRAMS += \
|
|
flatpak-validate-icon \
|
|
$(NULL)
|
|
|
|
flatpak_validate_icon_SOURCES = icon-validator/validate-icon.c
|
|
flatpak_validate_icon_LDADD = $(GDK_PIXBUF_LIBS)
|
|
flatpak_validate_icon_CFLAGS = $(GDK_PIXBUF_CFLAGS) -DLIBEXECDIR=\"$(libexecdir)\"
|
|
|
|
|