summaryrefslogtreecommitdiffstats
path: root/package/qdecoder/qdecoder-0001-fix-make-install.patch
diff options
context:
space:
mode:
authorPeter Korsgaard <peter@korsgaard.com>2015-02-03 14:52:07 +0100
committerPeter Korsgaard <peter@korsgaard.com>2015-02-03 14:52:56 +0100
commit298cd8eaa21a21eee85f9551a26ad294347b1d5a (patch)
tree249fa33b66f65e6daffdbfc8ca2e5399e8d89e61 /package/qdecoder/qdecoder-0001-fix-make-install.patch
parentdd798a45c571063595c45278e28ed4f614f2cf32 (diff)
downloadbuildroot-298cd8eaa21a21eee85f9551a26ad294347b1d5a.tar.gz
buildroot-298cd8eaa21a21eee85f9551a26ad294347b1d5a.zip
package/*: rename patches according to the new policy
Autogenerated from rename-patch.py (http://patchwork.ozlabs.org/patch/403345) Signed-off-by: Samuel Martin <s.martin49@gmail.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Diffstat (limited to 'package/qdecoder/qdecoder-0001-fix-make-install.patch')
-rw-r--r--package/qdecoder/qdecoder-0001-fix-make-install.patch40
1 files changed, 0 insertions, 40 deletions
diff --git a/package/qdecoder/qdecoder-0001-fix-make-install.patch b/package/qdecoder/qdecoder-0001-fix-make-install.patch
deleted file mode 100644
index f353566839..0000000000
--- a/package/qdecoder/qdecoder-0001-fix-make-install.patch
+++ /dev/null
@@ -1,40 +0,0 @@
-[PATCH] fix make install to respect DESTDIR
-
-And also ensure destination directories exist.
-
-Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
----
- src/Makefile.in | 17 +++++++++--------
- 1 file changed, 9 insertions(+), 8 deletions(-)
-
-Index: qdecoder-r12.0.5/src/Makefile.in
-===================================================================
---- qdecoder-r12.0.5.orig/src/Makefile.in
-+++ qdecoder-r12.0.5/src/Makefile.in
-@@ -78,17 +78,18 @@
- ${LN_S} -f ${SLIBREALNAME} ${SLIBNAME}
-
- install: all
-- ${INSTALL_DATA} qdecoder.h ${HEADERDIR}/qdecoder.h
-- ${INSTALL_DATA} ${LIBNAME} ${LIBDIR}/${LIBNAME}
-- ${INSTALL_DATA} ${SLIBREALNAME} ${LIBDIR}/${SLIBREALNAME}
-- ( cd ${LIBDIR}; ${LN_S} -f ${SLIBREALNAME} ${SLIBNAME} )
-+ mkdir -p ${DESTDIR}/${HEADERDIR} ${DESTDIR}/${LIBDIR}
-+ ${INSTALL_DATA} qdecoder.h ${DESTDIR}/${HEADERDIR}/qdecoder.h
-+ ${INSTALL_DATA} ${LIBNAME} ${DESTDIR}/${LIBDIR}/${LIBNAME}
-+ ${INSTALL_DATA} ${SLIBREALNAME} ${DESTDIR}/${LIBDIR}/${SLIBREALNAME}
-+ ( cd ${DESTDIR}/${LIBDIR}; ${LN_S} -f ${SLIBREALNAME} ${SLIBNAME} )
-
- deinstall: uninstall
- uninstall:
-- ${RM} -f ${HEADERDIR}/qdecoder.h
-- ${RM} -f ${LIBDIR}/${LIBNAME}
-- ${RM} -f ${LIBDIR}/${SLIBREALNAME}
-- ${RM} -f ${LIBDIR}/${SLIBNAME}
-+ ${RM} -f ${DESTDIR}/${HEADERDIR}/qdecoder.h
-+ ${RM} -f ${DESTDIR}/${LIBDIR}/${LIBNAME}
-+ ${RM} -f ${DESTDIR}/${LIBDIR}/${SLIBREALNAME}
-+ ${RM} -f ${DESTDIR}/${LIBDIR}/${SLIBNAME}
-
- doc:
- doxygen doxygen.conf
OpenPOWER on IntegriCloud