diff options
author | Matthew Thode <prometheanfire@gentoo.org> | 2015-10-19 17:29:34 -0500 |
---|---|---|
committer | Matthew Thode <prometheanfire@gentoo.org> | 2015-10-19 17:29:34 -0500 |
commit | 53aace4c6fa94a349ada4d25c912d8d8edd49c6d (patch) | |
tree | dca10af52aa589a8632182be800e94dbd2e508c5 /net-analyzer | |
parent | a09bd405975882649c4c8b0bb31baa1c68d363b6 (diff) | |
download | gentoo-53aace4c6fa94a349ada4d25c912d8d8edd49c6d.tar.gz gentoo-53aace4c6fa94a349ada4d25c912d8d8edd49c6d.tar.xz |
net-analyzer/icinga2: fixing missing quotes
Package-Manager: portage-2.2.20.1
Diffstat (limited to 'net-analyzer')
-rw-r--r-- | net-analyzer/icinga2/icinga2-2.3.11.ebuild | 2 | ||||
-rw-r--r-- | net-analyzer/icinga2/icinga2-9999.ebuild | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/net-analyzer/icinga2/icinga2-2.3.11.ebuild b/net-analyzer/icinga2/icinga2-2.3.11.ebuild index ca3ec56c807..176442c8514 100644 --- a/net-analyzer/icinga2/icinga2-2.3.11.ebuild +++ b/net-analyzer/icinga2/icinga2-2.3.11.ebuild @@ -74,7 +74,7 @@ src_configure() { src_install() { BUILDDIR="${WORKDIR}"/icinga2-${PV}_build - cd $BUILDDIR || die + cd "${BUILDDIR}" || die emake DESTDIR="${D}" install diff --git a/net-analyzer/icinga2/icinga2-9999.ebuild b/net-analyzer/icinga2/icinga2-9999.ebuild index 5d9ca2c1d71..196d6117899 100644 --- a/net-analyzer/icinga2/icinga2-9999.ebuild +++ b/net-analyzer/icinga2/icinga2-9999.ebuild @@ -75,7 +75,7 @@ src_configure() { src_install() { BUILDDIR="${WORKDIR}"/icinga2-${PV}_build - cd $BUILDDIR + cd "${BUILDDIR}" || die emake DESTDIR="${D}" install |