From 2be588e1c271a00170cabb206e42a5a2f910d177 Mon Sep 17 00:00:00 2001 From: Dongjin Kim Date: Tue, 16 Jul 2019 05:57:26 -0400 Subject: [PATCH] ODROID: fix to build Debian package without running 'build' script Signed-off-by: Dongjin Kim --- debian/changelog | 7 +++++++ debian/rules | 0 devLib/Makefile | 2 +- 3 files changed, 8 insertions(+), 1 deletion(-) mode change 100644 => 100755 debian/rules diff --git a/debian/changelog b/debian/changelog index 2b4dce4..e27735e 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,10 @@ +odroid-wiringpi (2.44-1.1) stable; urgency=medium + + * Non-maintainer upload. + * Fix to build package without running extra 'build' + + -- Dongjin Kim Tue, 16 Jul 2019 05:55:29 -0400 + odroid-wiringpi (2.44-1) odroid-unstable; urgency=low * Initial version with real Debian source package build for ODROID boards. diff --git a/debian/rules b/debian/rules old mode 100644 new mode 100755 diff --git a/devLib/Makefile b/devLib/Makefile index cf665d6..eafd9a5 100644 --- a/devLib/Makefile +++ b/devLib/Makefile @@ -37,7 +37,7 @@ DYNAMIC=libwiringPiDev.so.$(VERSION) #DEBUG = -g -O0 DEBUG = -O2 CC = gcc -INCLUDE = -I. +INCLUDE = -I. -I../wiringPi DEFS = -D_GNU_SOURCE CFLAGS = $(DEBUG) $(DEFS) -Wformat=2 -Wall -Winline $(INCLUDE) -pipe -fPIC