edid-debug: fix build when not using gold

Signed-off-by: Ian Leonard <antonlacon@gmail.com>
This commit is contained in:
Ian Leonard 2019-07-18 17:45:17 +00:00
parent 0b827797c3
commit c92d648e1c

View File

@ -11,8 +11,8 @@ PKG_DEPENDS_TARGET="toolchain"
PKG_LONGDESC="Decode EDID data in human-readable format"
make_target() {
echo "$CC $CFLAGS -Wall $LDFLAGS -lm -o edid-decode edid-decode.c"
$CC $CFLAGS -Wall $LDFLAGS -lm -o edid-decode edid-decode.c
echo "$CC $CFLAGS -Wall $LDFLAGS -o edid-decode edid-decode.c -lm"
$CC $CFLAGS -Wall $LDFLAGS -o edid-decode edid-decode.c -lm
}
makeinstall_target() {