diff options
author | Koen Kooi <koen@openembedded.org> | 2007-06-10 10:40:30 +0000 |
---|---|---|
committer | Koen Kooi <koen@openembedded.org> | 2007-06-10 10:40:30 +0000 |
commit | be1c0792115507ce003b4f883745f098b0ebde31 (patch) | |
tree | a7eafccb1699ab678e37506a290df953c82c69e3 /packages/pulseaudio | |
parent | cc478760ffe73da7d2048c9d3a1f530544b4ebe1 (diff) |
pulseaudio: fix postinsts
Diffstat (limited to 'packages/pulseaudio')
-rw-r--r-- | packages/pulseaudio/pulse.inc | 6 | ||||
-rw-r--r-- | packages/pulseaudio/pulseaudio_0.9.5.bb | 2 |
2 files changed, 4 insertions, 4 deletions
diff --git a/packages/pulseaudio/pulse.inc b/packages/pulseaudio/pulse.inc index c8cb6dc6b5..d4a9c5ef54 100644 --- a/packages/pulseaudio/pulse.inc +++ b/packages/pulseaudio/pulse.inc @@ -8,7 +8,7 @@ DEPENDS = "libatomics-ops liboil avahi libsamplerate0 libsndfile1 libtool" # optional DEPENDS += "alsa-lib" -PR = "r1" +PR = "r2" SRC_URI = "http://0pointer.de/lennart/projects/pulseaudio/pulseaudio-${PV}.tar.gz" @@ -71,7 +71,7 @@ CONFFILES_pulseaudio-server = "\ ${sysconfdir}/pulse/daemon.conf \ ${sysconfdir}/pulse/client.conf \ " -pkg_postinst_${PN}-bin() { +pkg_postinst_libppulse() { if test "x$D" != "x"; then exit 1 else @@ -83,7 +83,7 @@ else fi } -pkg_postrm${PN}-bin() { +pkg_postrm_libpulse() { if test "x$D" != "x"; then exit 1 else diff --git a/packages/pulseaudio/pulseaudio_0.9.5.bb b/packages/pulseaudio/pulseaudio_0.9.5.bb index dda2353827..3a4ab46cae 100644 --- a/packages/pulseaudio/pulseaudio_0.9.5.bb +++ b/packages/pulseaudio/pulseaudio_0.9.5.bb @@ -1,3 +1,3 @@ require pulse.inc -PR = "r9" +PR = "r10" |