summaryrefslogtreecommitdiff
path: root/recipes-extended/uvccapture/files/makefile.patch
diff options
context:
space:
mode:
authorAndrii Pientsov <andrii.pientsov@globallogic.com>2020-05-21 08:44:40 +0300
committerSerhii Kostiuk <serhii.o.kostiuk@globallogic.com>2020-05-21 13:05:31 +0300
commit1f8aaf8a9104af92b86dac7ac0c1d5c4ad73a224 (patch)
treea9cb671a859458b41c226d7812b7a096d3a7b2c9 /recipes-extended/uvccapture/files/makefile.patch
parent0b05e87874108a22f9ffed069c0b98fa9e5f473c (diff)
downloadmeta-mlinux-atmel-1f8aaf8a9104af92b86dac7ac0c1d5c4ad73a224.tar.gz
meta-mlinux-atmel-1f8aaf8a9104af92b86dac7ac0c1d5c4ad73a224.tar.bz2
meta-mlinux-atmel-1f8aaf8a9104af92b86dac7ac0c1d5c4ad73a224.zip
Remove duplicate
Diffstat (limited to 'recipes-extended/uvccapture/files/makefile.patch')
-rw-r--r--recipes-extended/uvccapture/files/makefile.patch29
1 files changed, 0 insertions, 29 deletions
diff --git a/recipes-extended/uvccapture/files/makefile.patch b/recipes-extended/uvccapture/files/makefile.patch
deleted file mode 100644
index 4733154..0000000
--- a/recipes-extended/uvccapture/files/makefile.patch
+++ /dev/null
@@ -1,29 +0,0 @@
-Index: uvccapture-0.5/Makefile
-===================================================================
---- uvccapture-0.5.orig/Makefile 2011-08-18 14:02:17.757628553 -0500
-+++ uvccapture-0.5/Makefile 2011-08-18 14:10:09.627899608 -0500
-@@ -1,8 +1,8 @@
--CC=gcc
--CPP=g++
-+#CC=gcc
-+#CPP=g++
- APP_BINARY=uvccapture
--VERSION = 0.4
--PREFIX=/usr/local/bin
-+VERSION = 0.5
-+PREFIX=/usr/bin
-
- WARNINGS = -Wall
-
-@@ -20,8 +20,9 @@
- rm -f *.a *.o $(APP_BINARY) core *~ log errlog
-
- install:
-- install $(APP_BINARY) $(PREFIX)
-+ install -d $(DESTDIR)$(PREFIX)
-+ install -m755 $(APP_BINARY) $(DESTDIR)$(PREFIX)
-
- # Applications:
- uvccapture: $(OBJECTS)
-- $(CC) $(OBJECTS) $(XPM_LIB) $(MATH_LIB) -ljpeg -o $(APP_BINARY)
-+ $(CC) $(OBJECTS) $(XPM_LIB) $(MATH_LIB) -ljpeg $(LDFLAGS) -o $(APP_BINARY)