diff options
author | Mike Westerhof <mwester@dls.net> | 2009-05-10 21:17:33 -0500 |
---|---|---|
committer | Mike Westerhof <mwester@dls.net> | 2009-05-10 21:17:33 -0500 |
commit | 798323a2cf431e7ac5f6939ccfd9cf30d234007d (patch) | |
tree | e0bbc258719eef0d1bc641d27b50736381b02867 /recipes | |
parent | 8004c1d66f6b0563e7c294c2646fd7bfbb3a954d (diff) |
logrotate: remove -s on install
Diffstat (limited to 'recipes')
-rw-r--r-- | recipes/logrotate/logrotate_3.7.1.bb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/recipes/logrotate/logrotate_3.7.1.bb b/recipes/logrotate/logrotate_3.7.1.bb index 0a1647e81d..61a130683d 100644 --- a/recipes/logrotate/logrotate_3.7.1.bb +++ b/recipes/logrotate/logrotate_3.7.1.bb @@ -5,7 +5,7 @@ DEPENDS = "popt" RDEPENDS = "cron" SECTION = "admin" LICENSE = "GPL" -PR = "r1" +PR = "r2" SRC_URI = "http://ftp.debian.org/debian/pool/main/l/logrotate/logrotate_${PV}.orig.tar.gz \ file://logrotate-3.7.1.patch;patch=1 \ @@ -21,7 +21,7 @@ do_compile() { do_install () { # Install the binary and conf file - install -D -s -m 0755 ${S}/logrotate ${D}${base_sbindir}/logrotate + install -D -m 0755 ${S}/logrotate ${D}${base_sbindir}/logrotate install -D -m 0644 ${WORKDIR}/logrotate.conf ${D}${sysconfdir}/logrotate.conf install -m 0755 -d ${D}${sysconfdir}/logrotate.d } |