diff options
| author | Joshua Lock <joshua.g.lock@intel.com> | 2016-11-25 15:28:52 +0000 |
|---|---|---|
| committer | Martin Jansa <Martin.Jansa@gmail.com> | 2016-12-02 09:16:17 +0100 |
| commit | efd3696e70a6603f1a45faa4a172433514f0a487 (patch) | |
| tree | b72751ba93b050391db05a8e1be7506836b6d515 /meta-oe/recipes-support | |
| parent | 761639b9d7681c81dd69eaf3a37c32791d6e97fd (diff) | |
| download | meta-openembedded-efd3696e70a6603f1a45faa4a172433514f0a487.tar.gz | |
remove True option to getVar calls
getVar() now defaults to expanding by default, thus remove the True
option from getVar() calls with a regex search and replace.
Search made with the following regex: getVar ?\(( ?[^,()]*), True\)
Signed-off-by: Joshua Lock <joshua.g.lock@intel.com>
Diffstat (limited to 'meta-oe/recipes-support')
| -rw-r--r-- | meta-oe/recipes-support/atop/atop_2.2.3.bb | 2 | ||||
| -rw-r--r-- | meta-oe/recipes-support/fltk/fltk_1.3.3.bb | 2 | ||||
| -rw-r--r-- | meta-oe/recipes-support/libftdi/libftdi_1.3.bb | 2 | ||||
| -rw-r--r-- | meta-oe/recipes-support/libssh/libssh_0.7.3.bb | 2 | ||||
| -rw-r--r-- | meta-oe/recipes-support/ne10/ne10_1.2.1.bb | 4 | ||||
| -rw-r--r-- | meta-oe/recipes-support/opencv/opencv_2.4.bb | 4 | ||||
| -rw-r--r-- | meta-oe/recipes-support/opencv/opencv_3.1.bb | 4 | ||||
| -rw-r--r-- | meta-oe/recipes-support/openldap/openldap_2.4.44.bb | 2 | ||||
| -rw-r--r-- | meta-oe/recipes-support/opensync/wbxml2_0.10.8.bb | 2 | ||||
| -rw-r--r-- | meta-oe/recipes-support/poco/poco_1.7.5.bb | 4 | ||||
| -rw-r--r-- | meta-oe/recipes-support/poppler/poppler_0.48.0.bb | 2 | ||||
| -rw-r--r-- | meta-oe/recipes-support/postgresql/postgresql.inc | 8 | ||||
| -rw-r--r-- | meta-oe/recipes-support/syslog-ng/syslog-ng.inc | 10 |
13 files changed, 24 insertions, 24 deletions
diff --git a/meta-oe/recipes-support/atop/atop_2.2.3.bb b/meta-oe/recipes-support/atop/atop_2.2.3.bb index 21311e3540..a36f08dd79 100644 --- a/meta-oe/recipes-support/atop/atop_2.2.3.bb +++ b/meta-oe/recipes-support/atop/atop_2.2.3.bb | |||
| @@ -15,7 +15,7 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=393a5ca445f6965873eca0259a17f833" | |||
| 15 | 15 | ||
| 16 | DEPENDS = "ncurses zlib" | 16 | DEPENDS = "ncurses zlib" |
| 17 | 17 | ||
| 18 | ATOP_VER = "${@'-'.join(d.getVar('PV', True).rsplit('.', 1))}" | 18 | ATOP_VER = "${@'-'.join(d.getVar('PV').rsplit('.', 1))}" |
| 19 | 19 | ||
| 20 | SRC_URI = " \ | 20 | SRC_URI = " \ |
| 21 | http://www.atoptool.nl/download/${BPN}-${ATOP_VER}.tar.gz \ | 21 | http://www.atoptool.nl/download/${BPN}-${ATOP_VER}.tar.gz \ |
diff --git a/meta-oe/recipes-support/fltk/fltk_1.3.3.bb b/meta-oe/recipes-support/fltk/fltk_1.3.3.bb index 117ecc366a..efba3a9d2d 100644 --- a/meta-oe/recipes-support/fltk/fltk_1.3.3.bb +++ b/meta-oe/recipes-support/fltk/fltk_1.3.3.bb | |||
| @@ -41,7 +41,7 @@ do_install_append_class-target() { | |||
| 41 | } | 41 | } |
| 42 | 42 | ||
| 43 | python populate_packages_prepend () { | 43 | python populate_packages_prepend () { |
| 44 | if (d.getVar('DEBIAN_NAMES', 1)): | 44 | if (d.getVar('DEBIAN_NAMES')): |
| 45 | d.setVar('PKG_${BPN}', 'libfltk${PV}') | 45 | d.setVar('PKG_${BPN}', 'libfltk${PV}') |
| 46 | } | 46 | } |
| 47 | 47 | ||
diff --git a/meta-oe/recipes-support/libftdi/libftdi_1.3.bb b/meta-oe/recipes-support/libftdi/libftdi_1.3.bb index 5eee0dbf3f..199e5a8f65 100644 --- a/meta-oe/recipes-support/libftdi/libftdi_1.3.bb +++ b/meta-oe/recipes-support/libftdi/libftdi_1.3.bb | |||
| @@ -24,7 +24,7 @@ PACKAGECONFIG[cpp-wrapper] = "-DFTDI_BUILD_CPP=on -DFTDIPP=on,-DFTDI_BUILD_CPP=o | |||
| 24 | 24 | ||
| 25 | inherit cmake binconfig pkgconfig | 25 | inherit cmake binconfig pkgconfig |
| 26 | 26 | ||
| 27 | EXTRA_OECMAKE = "-DLIB_SUFFIX=${@d.getVar('baselib', True).replace('lib', '')}" | 27 | EXTRA_OECMAKE = "-DLIB_SUFFIX=${@d.getVar('baselib').replace('lib', '')}" |
| 28 | 28 | ||
| 29 | FILES_${PN}-dev += "${libdir}/cmake" | 29 | FILES_${PN}-dev += "${libdir}/cmake" |
| 30 | 30 | ||
diff --git a/meta-oe/recipes-support/libssh/libssh_0.7.3.bb b/meta-oe/recipes-support/libssh/libssh_0.7.3.bb index c0b8913e1f..6c22649710 100644 --- a/meta-oe/recipes-support/libssh/libssh_0.7.3.bb +++ b/meta-oe/recipes-support/libssh/libssh_0.7.3.bb | |||
| @@ -16,7 +16,7 @@ EXTRA_OECMAKE = " \ | |||
| 16 | -DWITH_PCAP=1 \ | 16 | -DWITH_PCAP=1 \ |
| 17 | -DWITH_SFTP=1 \ | 17 | -DWITH_SFTP=1 \ |
| 18 | -DWITH_ZLIB=1 \ | 18 | -DWITH_ZLIB=1 \ |
| 19 | -DLIB_SUFFIX=${@d.getVar('baselib', True).replace('lib', '')} \ | 19 | -DLIB_SUFFIX=${@d.getVar('baselib').replace('lib', '')} \ |
| 20 | " | 20 | " |
| 21 | 21 | ||
| 22 | PACKAGECONFIG ??="" | 22 | PACKAGECONFIG ??="" |
diff --git a/meta-oe/recipes-support/ne10/ne10_1.2.1.bb b/meta-oe/recipes-support/ne10/ne10_1.2.1.bb index 2fb9d64f59..951086f775 100644 --- a/meta-oe/recipes-support/ne10/ne10_1.2.1.bb +++ b/meta-oe/recipes-support/ne10/ne10_1.2.1.bb | |||
| @@ -21,10 +21,10 @@ COMPATIBLE_MACHINE_aarch64 = "(.*)" | |||
| 21 | COMPATIBLE_MACHINE_armv7a = "(.*)" | 21 | COMPATIBLE_MACHINE_armv7a = "(.*)" |
| 22 | 22 | ||
| 23 | python () { | 23 | python () { |
| 24 | if any(t.startswith('armv7') for t in d.getVar('TUNE_FEATURES', True).split()): | 24 | if any(t.startswith('armv7') for t in d.getVar('TUNE_FEATURES').split()): |
| 25 | d.setVar('NE10_TARGET_ARCH', 'armv7') | 25 | d.setVar('NE10_TARGET_ARCH', 'armv7') |
| 26 | bb.debug(2, 'Building Ne10 for armv7') | 26 | bb.debug(2, 'Building Ne10 for armv7') |
| 27 | elif any(t.startswith('aarch64') for t in d.getVar('TUNE_FEATURES', True).split()): | 27 | elif any(t.startswith('aarch64') for t in d.getVar('TUNE_FEATURES').split()): |
| 28 | d.setVar('NE10_TARGET_ARCH', 'aarch64') | 28 | d.setVar('NE10_TARGET_ARCH', 'aarch64') |
| 29 | bb.debug(2, 'Building Ne10 for aarch64') | 29 | bb.debug(2, 'Building Ne10 for aarch64') |
| 30 | else: | 30 | else: |
diff --git a/meta-oe/recipes-support/opencv/opencv_2.4.bb b/meta-oe/recipes-support/opencv/opencv_2.4.bb index ced066f563..de2f0529ef 100644 --- a/meta-oe/recipes-support/opencv/opencv_2.4.bb +++ b/meta-oe/recipes-support/opencv/opencv_2.4.bb | |||
| @@ -65,12 +65,12 @@ python populate_packages_prepend () { | |||
| 65 | do_split_packages(d, cv_libdir, '^lib(.*)\.a$', 'lib%s-dev', 'OpenCV %s development package', extra_depends='${PN}-dev') | 65 | do_split_packages(d, cv_libdir, '^lib(.*)\.a$', 'lib%s-dev', 'OpenCV %s development package', extra_depends='${PN}-dev') |
| 66 | do_split_packages(d, cv_libdir, '^lib(.*)\.so\.*', 'lib%s', 'OpenCV %s library', extra_depends='', allow_links=True) | 66 | do_split_packages(d, cv_libdir, '^lib(.*)\.so\.*', 'lib%s', 'OpenCV %s library', extra_depends='', allow_links=True) |
| 67 | 67 | ||
| 68 | pn = d.getVar('PN', 1) | 68 | pn = d.getVar('PN') |
| 69 | metapkg = pn + '-dev' | 69 | metapkg = pn + '-dev' |
| 70 | d.setVar('ALLOW_EMPTY_' + metapkg, "1") | 70 | d.setVar('ALLOW_EMPTY_' + metapkg, "1") |
| 71 | blacklist = [ metapkg ] | 71 | blacklist = [ metapkg ] |
| 72 | metapkg_rdepends = [ ] | 72 | metapkg_rdepends = [ ] |
| 73 | packages = d.getVar('PACKAGES', 1).split() | 73 | packages = d.getVar('PACKAGES').split() |
| 74 | for pkg in packages[1:]: | 74 | for pkg in packages[1:]: |
| 75 | if not pkg in blacklist and not pkg in metapkg_rdepends and pkg.endswith('-dev'): | 75 | if not pkg in blacklist and not pkg in metapkg_rdepends and pkg.endswith('-dev'): |
| 76 | metapkg_rdepends.append(pkg) | 76 | metapkg_rdepends.append(pkg) |
diff --git a/meta-oe/recipes-support/opencv/opencv_3.1.bb b/meta-oe/recipes-support/opencv/opencv_3.1.bb index 74e30e4170..a0dd981317 100644 --- a/meta-oe/recipes-support/opencv/opencv_3.1.bb +++ b/meta-oe/recipes-support/opencv/opencv_3.1.bb | |||
| @@ -89,12 +89,12 @@ python populate_packages_prepend () { | |||
| 89 | do_split_packages(d, cv_libdir, '^lib(.*)\.a$', 'lib%s-dev', 'OpenCV %s development package', extra_depends='${PN}-dev') | 89 | do_split_packages(d, cv_libdir, '^lib(.*)\.a$', 'lib%s-dev', 'OpenCV %s development package', extra_depends='${PN}-dev') |
| 90 | do_split_packages(d, cv_libdir, '^lib(.*)\.so\.*', 'lib%s', 'OpenCV %s library', extra_depends='', allow_links=True) | 90 | do_split_packages(d, cv_libdir, '^lib(.*)\.so\.*', 'lib%s', 'OpenCV %s library', extra_depends='', allow_links=True) |
| 91 | 91 | ||
| 92 | pn = d.getVar('PN', 1) | 92 | pn = d.getVar('PN') |
| 93 | metapkg = pn + '-dev' | 93 | metapkg = pn + '-dev' |
| 94 | d.setVar('ALLOW_EMPTY_' + metapkg, "1") | 94 | d.setVar('ALLOW_EMPTY_' + metapkg, "1") |
| 95 | blacklist = [ metapkg ] | 95 | blacklist = [ metapkg ] |
| 96 | metapkg_rdepends = [ ] | 96 | metapkg_rdepends = [ ] |
| 97 | packages = d.getVar('PACKAGES', 1).split() | 97 | packages = d.getVar('PACKAGES').split() |
| 98 | for pkg in packages[1:]: | 98 | for pkg in packages[1:]: |
| 99 | if not pkg in blacklist and not pkg in metapkg_rdepends and pkg.endswith('-dev'): | 99 | if not pkg in blacklist and not pkg in metapkg_rdepends and pkg.endswith('-dev'): |
| 100 | metapkg_rdepends.append(pkg) | 100 | metapkg_rdepends.append(pkg) |
diff --git a/meta-oe/recipes-support/openldap/openldap_2.4.44.bb b/meta-oe/recipes-support/openldap/openldap_2.4.44.bb index 05ffc5ce3b..645a5179c7 100644 --- a/meta-oe/recipes-support/openldap/openldap_2.4.44.bb +++ b/meta-oe/recipes-support/openldap/openldap_2.4.44.bb | |||
| @@ -242,7 +242,7 @@ python populate_packages_prepend () { | |||
| 242 | d.setVar('ALLOW_EMPTY_' + metapkg, "1") | 242 | d.setVar('ALLOW_EMPTY_' + metapkg, "1") |
| 243 | d.setVar('FILES_' + metapkg, "") | 243 | d.setVar('FILES_' + metapkg, "") |
| 244 | metapkg_rdepends = [] | 244 | metapkg_rdepends = [] |
| 245 | packages = d.getVar('PACKAGES', 1).split() | 245 | packages = d.getVar('PACKAGES').split() |
| 246 | for pkg in packages[1:]: | 246 | for pkg in packages[1:]: |
| 247 | if pkg.count("openldap-backend-") and not pkg in metapkg_rdepends and not pkg.count("-dev") and not pkg.count("-dbg") and not pkg.count("static") and not pkg.count("locale"): | 247 | if pkg.count("openldap-backend-") and not pkg in metapkg_rdepends and not pkg.count("-dev") and not pkg.count("-dbg") and not pkg.count("static") and not pkg.count("locale"): |
| 248 | metapkg_rdepends.append(pkg) | 248 | metapkg_rdepends.append(pkg) |
diff --git a/meta-oe/recipes-support/opensync/wbxml2_0.10.8.bb b/meta-oe/recipes-support/opensync/wbxml2_0.10.8.bb index bd15bba715..8c948c5655 100644 --- a/meta-oe/recipes-support/opensync/wbxml2_0.10.8.bb +++ b/meta-oe/recipes-support/opensync/wbxml2_0.10.8.bb | |||
| @@ -15,7 +15,7 @@ S = "${WORKDIR}/libwbxml-${PV}" | |||
| 15 | 15 | ||
| 16 | inherit cmake pkgconfig | 16 | inherit cmake pkgconfig |
| 17 | 17 | ||
| 18 | EXTRA_OECMAKE = "-DLIB_SUFFIX=${@d.getVar('baselib', True).replace('lib', '')}" | 18 | EXTRA_OECMAKE = "-DLIB_SUFFIX=${@d.getVar('baselib').replace('lib', '')}" |
| 19 | 19 | ||
| 20 | PACKAGES += "${PN}-tools" | 20 | PACKAGES += "${PN}-tools" |
| 21 | 21 | ||
diff --git a/meta-oe/recipes-support/poco/poco_1.7.5.bb b/meta-oe/recipes-support/poco/poco_1.7.5.bb index 0fc50e1549..2cab7960a5 100644 --- a/meta-oe/recipes-support/poco/poco_1.7.5.bb +++ b/meta-oe/recipes-support/poco/poco_1.7.5.bb | |||
| @@ -62,12 +62,12 @@ PACKAGES = "${PN}-dbg ${POCO_PACKAGES}" | |||
| 62 | python __anonymous () { | 62 | python __anonymous () { |
| 63 | packages = [] | 63 | packages = [] |
| 64 | testrunners = [] | 64 | testrunners = [] |
| 65 | components = d.getVar("PACKAGECONFIG", True).split() | 65 | components = d.getVar("PACKAGECONFIG").split() |
| 66 | components.append("Foundation") | 66 | components.append("Foundation") |
| 67 | for lib in components: | 67 | for lib in components: |
| 68 | pkg = ("poco-%s" % lib.lower()).replace("_","") | 68 | pkg = ("poco-%s" % lib.lower()).replace("_","") |
| 69 | packages.append(pkg) | 69 | packages.append(pkg) |
| 70 | if not d.getVar("FILES_%s" % pkg, True): | 70 | if not d.getVar("FILES_%s" % pkg): |
| 71 | d.setVar("FILES_%s" % pkg, "${libdir}/libPoco%s.so.*" % lib) | 71 | d.setVar("FILES_%s" % pkg, "${libdir}/libPoco%s.so.*" % lib) |
| 72 | testrunners.append("%s" % lib) | 72 | testrunners.append("%s" % lib) |
| 73 | 73 | ||
diff --git a/meta-oe/recipes-support/poppler/poppler_0.48.0.bb b/meta-oe/recipes-support/poppler/poppler_0.48.0.bb index c586755644..ebe986b9f1 100644 --- a/meta-oe/recipes-support/poppler/poppler_0.48.0.bb +++ b/meta-oe/recipes-support/poppler/poppler_0.48.0.bb | |||
| @@ -43,7 +43,7 @@ SRC_URI_append = "${QT4E_PATCHES}" | |||
| 43 | 43 | ||
| 44 | # check for TARGET_FPU=soft and inform configure of the result so it can disable some floating points | 44 | # check for TARGET_FPU=soft and inform configure of the result so it can disable some floating points |
| 45 | def get_poppler_fpu_setting(bb, d): | 45 | def get_poppler_fpu_setting(bb, d): |
| 46 | if d.getVar('TARGET_FPU', 1) in [ 'soft' ]: | 46 | if d.getVar('TARGET_FPU') in [ 'soft' ]: |
| 47 | return "--enable-fixedpoint" | 47 | return "--enable-fixedpoint" |
| 48 | return "" | 48 | return "" |
| 49 | 49 | ||
diff --git a/meta-oe/recipes-support/postgresql/postgresql.inc b/meta-oe/recipes-support/postgresql/postgresql.inc index 454624caaa..f720cbca27 100644 --- a/meta-oe/recipes-support/postgresql/postgresql.inc +++ b/meta-oe/recipes-support/postgresql/postgresql.inc | |||
| @@ -91,7 +91,7 @@ python populate_packages_prepend() { | |||
| 91 | fpack="${PN}-" + name + "-dbg" + " " + fpack | 91 | fpack="${PN}-" + name + "-dbg" + " " + fpack |
| 92 | d.setVar('PACKAGES', fpack) | 92 | d.setVar('PACKAGES', fpack) |
| 93 | 93 | ||
| 94 | conf=(d.getVar('PACKAGECONFIG', True) or "").split() | 94 | conf=(d.getVar('PACKAGECONFIG') or "").split() |
| 95 | pack=d.getVar('PACKAGES', False) or "" | 95 | pack=d.getVar('PACKAGES', False) or "" |
| 96 | bb.debug(1, "PACKAGECONFIG=%s" % conf) | 96 | bb.debug(1, "PACKAGECONFIG=%s" % conf) |
| 97 | bb.debug(1, "PACKAGES1=%s" % pack ) | 97 | bb.debug(1, "PACKAGES1=%s" % pack ) |
| @@ -105,7 +105,7 @@ python populate_packages_prepend() { | |||
| 105 | if "python" in conf: | 105 | if "python" in conf: |
| 106 | fill_more("plpython") | 106 | fill_more("plpython") |
| 107 | 107 | ||
| 108 | pack=d.getVar('PACKAGES', True) or "" | 108 | pack=d.getVar('PACKAGES') or "" |
| 109 | bb.debug(1, "PACKAGES2=%s" % pack) | 109 | bb.debug(1, "PACKAGES2=%s" % pack) |
| 110 | 110 | ||
| 111 | } | 111 | } |
| @@ -191,7 +191,7 @@ do_install_append() { | |||
| 191 | # multiple server config directory | 191 | # multiple server config directory |
| 192 | install -d -m 700 ${D}${sysconfdir}/default/${BPN} | 192 | install -d -m 700 ${D}${sysconfdir}/default/${BPN} |
| 193 | 193 | ||
| 194 | if [ "${@d.getVar('enable_pam', True)}" = "pam" ]; then | 194 | if [ "${@d.getVar('enable_pam')}" = "pam" ]; then |
| 195 | install -d ${D}${sysconfdir}/pam.d | 195 | install -d ${D}${sysconfdir}/pam.d |
| 196 | install -m 644 ${WORKDIR}/postgresql.pam ${D}${sysconfdir}/pam.d/postgresql | 196 | install -m 644 ${WORKDIR}/postgresql.pam ${D}${sysconfdir}/pam.d/postgresql |
| 197 | fi | 197 | fi |
| @@ -221,7 +221,7 @@ FILES_${PN} += "${sysconfdir}/init.d/${BPN}-server \ | |||
| 221 | ${libdir}/${BPN}/libpqwalreceiver.so \ | 221 | ${libdir}/${BPN}/libpqwalreceiver.so \ |
| 222 | ${libdir}/${BPN}/*_and_*.so \ | 222 | ${libdir}/${BPN}/*_and_*.so \ |
| 223 | ${@'${sysconfdir}/pam.d/postgresql' \ | 223 | ${@'${sysconfdir}/pam.d/postgresql' \ |
| 224 | if 'pam' == d.getVar('enable_pam', True) \ | 224 | if 'pam' == d.getVar('enable_pam') \ |
| 225 | else ''} \ | 225 | else ''} \ |
| 226 | " | 226 | " |
| 227 | 227 | ||
diff --git a/meta-oe/recipes-support/syslog-ng/syslog-ng.inc b/meta-oe/recipes-support/syslog-ng/syslog-ng.inc index 898e9c2a35..7b56dd4c1b 100644 --- a/meta-oe/recipes-support/syslog-ng/syslog-ng.inc +++ b/meta-oe/recipes-support/syslog-ng/syslog-ng.inc | |||
| @@ -104,17 +104,17 @@ SYSTEMD_SERVICE_${PN} = "${BPN}.service" | |||
| 104 | # no syslog-init for systemd | 104 | # no syslog-init for systemd |
| 105 | python () { | 105 | python () { |
| 106 | if bb.utils.contains('DISTRO_FEATURES', 'sysvinit', True, False, d): | 106 | if bb.utils.contains('DISTRO_FEATURES', 'sysvinit', True, False, d): |
| 107 | pn = d.getVar('PN', True) | 107 | pn = d.getVar('PN') |
| 108 | sysconfdir = d.getVar('sysconfdir', True) | 108 | sysconfdir = d.getVar('sysconfdir') |
| 109 | d.appendVar('ALTERNATIVE_%s' % (pn), ' syslog-init') | 109 | d.appendVar('ALTERNATIVE_%s' % (pn), ' syslog-init') |
| 110 | d.setVarFlag('ALTERNATIVE_PRIORITY', 'syslog-init', '200') | 110 | d.setVarFlag('ALTERNATIVE_PRIORITY', 'syslog-init', '200') |
| 111 | d.setVarFlag('ALTERNATIVE_LINK_NAME', 'syslog-init', '%s/init.d/syslog' % (sysconfdir)) | 111 | d.setVarFlag('ALTERNATIVE_LINK_NAME', 'syslog-init', '%s/init.d/syslog' % (sysconfdir)) |
| 112 | 112 | ||
| 113 | if bb.utils.contains('DISTRO_FEATURES', 'systemd', True, False, d): | 113 | if bb.utils.contains('DISTRO_FEATURES', 'systemd', True, False, d): |
| 114 | pn = d.getVar('PN', True) | 114 | pn = d.getVar('PN') |
| 115 | d.appendVar('ALTERNATIVE_%s' % (pn), ' syslog-service') | 115 | d.appendVar('ALTERNATIVE_%s' % (pn), ' syslog-service') |
| 116 | d.setVarFlag('ALTERNATIVE_LINK_NAME', 'syslog-service', '%s/systemd/system/syslog.service' % (d.getVar('sysconfdir', True))) | 116 | d.setVarFlag('ALTERNATIVE_LINK_NAME', 'syslog-service', '%s/systemd/system/syslog.service' % (d.getVar('sysconfdir'))) |
| 117 | d.setVarFlag('ALTERNATIVE_TARGET', 'syslog-service', '%s/system/${BPN}.service' % (d.getVar('systemd_unitdir', True))) | 117 | d.setVarFlag('ALTERNATIVE_TARGET', 'syslog-service', '%s/system/${BPN}.service' % (d.getVar('systemd_unitdir'))) |
| 118 | } | 118 | } |
| 119 | 119 | ||
| 120 | INITSCRIPT_NAME = "syslog" | 120 | INITSCRIPT_NAME = "syslog" |
