aboutsummaryrefslogtreecommitdiffstats
path: root/openembedded-layer/recipes-support/qmi-gps-proxy/files
diff options
context:
space:
mode:
Diffstat (limited to 'openembedded-layer/recipes-support/qmi-gps-proxy/files')
-rw-r--r--openembedded-layer/recipes-support/qmi-gps-proxy/files/fix_makefile.patch23
1 files changed, 0 insertions, 23 deletions
diff --git a/openembedded-layer/recipes-support/qmi-gps-proxy/files/fix_makefile.patch b/openembedded-layer/recipes-support/qmi-gps-proxy/files/fix_makefile.patch
deleted file mode 100644
index a0ac51c..0000000
--- a/openembedded-layer/recipes-support/qmi-gps-proxy/files/fix_makefile.patch
+++ /dev/null
@@ -1,23 +0,0 @@
-diff --git a/Makefile b/Makefile
-index 2b611a1..0040626 100644
---- a/Makefile
-+++ b/Makefile
-@@ -2,6 +2,7 @@ OUT := gps_proxy
-
- CFLAGS := -Wall -g -I../qrtr/lib
- LDFLAGS := -L../qrtr -lqrtr
-+prefix := /usr/local
-
- SRCS := qmi_gps.c qmi_tlv.c gps_proxy.c util.c
- OBJS := $(SRCS:.c=.o)
-@@ -12,8 +13,8 @@ $(OUT): $(OBJS)
- #%.c: %.qmi
- # qmic < $<
-
--test: $(OUT)
-- ./$(OUT)
-+install: $(OUT)
-+ install -D -m 755 $< $(DESTDIR)$(prefix)/bin/$<
-
- clean:
- rm -f $(OUT) $(OBJS)