diff options
author | Daniel Robbins <drobbins@gentoo.org> | 2000-09-15 20:09:04 +0000 |
---|---|---|
committer | Daniel Robbins <drobbins@gentoo.org> | 2000-09-15 20:09:04 +0000 |
commit | af430fa69f2741289bb58572bce1752365d5d253 (patch) | |
tree | ea748ddcfe17a9e1924e22c80b87c1ac679b6a29 /media-libs/alsa-lib | |
parent | added try syntax (diff) | |
download | historical-af430fa69f2741289bb58572bce1752365d5d253.tar.gz historical-af430fa69f2741289bb58572bce1752365d5d253.tar.bz2 historical-af430fa69f2741289bb58572bce1752365d5d253.zip |
added try syntax
Diffstat (limited to 'media-libs/alsa-lib')
-rw-r--r-- | media-libs/alsa-lib/alsa-lib-0.5.8-r1.ebuild | 8 | ||||
-rw-r--r-- | media-libs/alsa-lib/alsa-lib-0.5.9.ebuild | 8 |
2 files changed, 8 insertions, 8 deletions
diff --git a/media-libs/alsa-lib/alsa-lib-0.5.8-r1.ebuild b/media-libs/alsa-lib/alsa-lib-0.5.8-r1.ebuild index 341fd2c4c067..f09f90fa9ca4 100644 --- a/media-libs/alsa-lib/alsa-lib-0.5.8-r1.ebuild +++ b/media-libs/alsa-lib/alsa-lib-0.5.8-r1.ebuild @@ -1,7 +1,7 @@ # Copyright 1999-2000 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License, v2 or later # Author Achim Gottinger <achim@gentoo.org> -# $Header: /var/cvsroot/gentoo-x86/media-libs/alsa-lib/alsa-lib-0.5.8-r1.ebuild,v 1.2 2000/08/16 04:38:06 drobbins Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-libs/alsa-lib/alsa-lib-0.5.8-r1.ebuild,v 1.3 2000/09/15 20:09:01 drobbins Exp $ P=alsa-lib-0.5.8 A=${P}.tar.bz2 @@ -16,13 +16,13 @@ src_unpack() { src_compile() { cd ${S} - ./configure --host=${CHOST} --prefix=/usr - make + try ./configure --host=${CHOST} --prefix=/usr + try make } src_install() { cd ${S} - make DESTDIR=${D} install + try make DESTDIR=${D} install dodoc ChangeLog COPYING } diff --git a/media-libs/alsa-lib/alsa-lib-0.5.9.ebuild b/media-libs/alsa-lib/alsa-lib-0.5.9.ebuild index 710047b4c706..99f60d083730 100644 --- a/media-libs/alsa-lib/alsa-lib-0.5.9.ebuild +++ b/media-libs/alsa-lib/alsa-lib-0.5.9.ebuild @@ -1,7 +1,7 @@ # Copyright 1999-2000 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License, v2 or later # Author Achim Gottinger <achim@gentoo.org> -# $Header: /var/cvsroot/gentoo-x86/media-libs/alsa-lib/alsa-lib-0.5.9.ebuild,v 1.1 2000/08/19 15:54:55 achim Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-libs/alsa-lib/alsa-lib-0.5.9.ebuild,v 1.2 2000/09/15 20:09:01 drobbins Exp $ P=alsa-lib-0.5.9 A=${P}.tar.bz2 @@ -16,13 +16,13 @@ src_unpack() { src_compile() { cd ${S} - ./configure --host=${CHOST} --prefix=/usr - make + try ./configure --host=${CHOST} --prefix=/usr + try make } src_install() { cd ${S} - make DESTDIR=${D} install + try make DESTDIR=${D} install dodoc ChangeLog COPYING } |