diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2016-04-29 17:17:34 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2016-04-29 17:17:34 +0200 |
commit | ec515932972c6ab116e69844511fccb0bd57aff3 (patch) | |
tree | 47f1b0a47da1c1647681266975d8b9cb9e105234 /bin | |
parent | 7480966c82f33e0e873ffeb5398e4192b976bb49 (diff) |
What is bin/distro-install-file-lists supposed to do?
It is called from the recipe for distro-pack-install in Makefile.in, and I'm
(re-/mis-?) using that make target for xdg-app builds (mainly to populate the
/usr/share metadata via bin/distro-install-desktop-integration), which then
fail because there is no $DESTDIR/gid_Module_Root.
Is anybody using that make target still in a way where
bin/distro-install-file-lists is doing something useful (and why is it that
$DESTDIR/gid_Module_Root is existing in that case, but not in mine), or is that
some leftover stuff than should be removed?
Change-Id: I27197c4ae3f57f028f5b181315484e25c1edbaf7
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/distro-install-file-lists | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/distro-install-file-lists b/bin/distro-install-file-lists index 5df56e8890ae..2960f5fe0410 100755 --- a/bin/distro-install-file-lists +++ b/bin/distro-install-file-lists @@ -62,7 +62,7 @@ merge_flists() if ! test -f $DESTDIR/gid_Module_Root; then echo "Error: Failed to generate package file lists"; echo " Have you defined DESTDIR?" - exit 1; + exit fi |