qwt: convert tabs to spaces.
authorMarc Reilly <marc@cpdesign.com.au>
Tue, 21 Aug 2012 01:54:27 +0000 (01:54 +0000)
committerPatrick Ohly <patrick.ohly@intel.com>
Fri, 9 Jan 2015 16:23:02 +0000 (08:23 -0800)
(From meta-openembedded rev: 312b7ed8ab03845db8e1b8c78245b077b6e7e0d5)

Signed-off-by: Marc Reilly <marc@cpdesign.com.au>
Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
Signed-off-by: Patrick Ohly <patrick.ohly@intel.com>
meta-openembedded/meta-oe/recipes-qt/qwt/qwt.inc

index a9289f7..50f4e2a 100644 (file)
@@ -12,22 +12,22 @@ SRC_URI = "${SOURCEFORGE_MIRROR}/qwt/qwt-${PV}.tar.bz2;name=qwt \
 S = "${WORKDIR}/qwt-${PV}"
 
 do_configure_prepend() {
-       sed -i -e 's:RELEASE_SUFFIX      = :RELEASE_SUFFIX      = ${QT_LIBINFIX}:' *.pri
-       sed -i -e 's:qtAddLibrary(qwt:qtAddLibrary(qwt)${QT_LIBINFIX}:g' *.prf
-       sed -e 's/# QWT_CONFIG     += QwtExamples/QWT_CONFIG     += QwtExamples/g' -i qwtconfig.pri
-       sed -i -e 's:/usr/local/qwt-$$QWT_VERSION:${D}${prefix}:g' ${S}/*.pri
+    sed -i -e 's:RELEASE_SUFFIX      = :RELEASE_SUFFIX      = ${QT_LIBINFIX}:' *.pri
+    sed -i -e 's:qtAddLibrary(qwt:qtAddLibrary(qwt)${QT_LIBINFIX}:g' *.prf
+    sed -e 's/# QWT_CONFIG     += QwtExamples/QWT_CONFIG     += QwtExamples/g' -i qwtconfig.pri
+    sed -i -e 's:/usr/local/qwt-$$QWT_VERSION:${D}${prefix}:g' ${S}/*.pri
 }
 
 do_install() {
-       oe_runmake -e install
-       install -d ${D}${datadir}/doc/${PN}
-       mv ${D}${prefix}/doc/* ${D}${datadir}/doc/${PN}/
-       cd ${S}/examples
-       install -d ${D}/${bindir}
-       cd bin${QT_LIBINFIX}/
-       for i in * ; do
-               cp -pPR ${i} ${D}/${bindir}/${i}${QT_LIBINFIX}
-       done
+    oe_runmake -e install
+    install -d ${D}${datadir}/doc/${PN}
+    mv ${D}${prefix}/doc/* ${D}${datadir}/doc/${PN}/
+    cd ${S}/examples
+    install -d ${D}/${bindir}
+    cd bin${QT_LIBINFIX}/
+    for i in * ; do
+        cp -pPR ${i} ${D}/${bindir}/${i}${QT_LIBINFIX}
+    done
 }
 
 PACKAGES_prepend = "${PN}-examples "