Skip to content

Commit

Permalink
HACK: print config.log on error
Browse files Browse the repository at this point in the history
  • Loading branch information
Artox committed Nov 1, 2020
1 parent 9779051 commit d89bb54
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions debian/rules
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,8 @@ override_dh_auto_install:
./waf configure \
--prefix=/usr \
--device=imx6 \
--platform=fb
--platform=fb \
|| cat build/config.log && false
./waf build
./waf install \
--destdir=$(DESTDIR_FB)
Expand All @@ -51,7 +52,8 @@ override_dh_auto_install:
./waf configure \
--prefix=/usr \
--device=imx6 \
--platform=wayland
--platform=wayland \
|| cat build/config.log && false
./waf build
./waf install \
--destdir=$(DESTDIR_WL)
Expand All @@ -63,7 +65,8 @@ override_dh_auto_install:
./waf configure \
--prefix=/usr \
--device=imx6 \
--platform=x11
--platform=x11 \
|| cat build/config.log && false
./waf build
./waf install \
--destdir=$(DESTDIR_X11)
Expand Down

0 comments on commit d89bb54

Please sign in to comment.