diff options
author | Denis 'GNUtoo' Carikli <GNUtoo@no-log.org> | 2019-04-14 21:56:36 +0200 |
---|---|---|
committer | Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org> | 2019-04-14 22:05:30 +0200 |
commit | 4106007657ac82b8df2219ea4b7c97686055f4f9 (patch) | |
tree | fdf09a888961b3a390a64e87d47e5f324001ddfe /pcr/jitsi | |
parent | 1c9b142039b544bd2b348c658ed574bf0f249cad (diff) | |
download | abslibre-4106007657ac82b8df2219ea4b7c97686055f4f9.tar.gz abslibre-4106007657ac82b8df2219ea4b7c97686055f4f9.tar.bz2 abslibre-4106007657ac82b8df2219ea4b7c97686055f4f9.zip |
pcr: jitsi: fix build
Without that fix we have:
| ==> Starting build()...
| /startdir/PKGBUILD: line 31: /etc/profile.d/apache-ant.sh: No such file or directory
The /etc/profile.d/apache-ant.sh file cannot be found in the
extra/ant or pcr/apache-ant-contrib packages. It was probably in one of
theses packages before and may have been removed because it's not
required anymore.
Signed-off-by: Denis 'GNUtoo' Carikli <GNUtoo@no-log.org>
Diffstat (limited to 'pcr/jitsi')
-rw-r--r-- | pcr/jitsi/PKGBUILD | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/pcr/jitsi/PKGBUILD b/pcr/jitsi/PKGBUILD index 9678f3860..473be0fc9 100644 --- a/pcr/jitsi/PKGBUILD +++ b/pcr/jitsi/PKGBUILD @@ -5,10 +5,12 @@ # parabola changes and rationale: # - corrected used license +# - fixed build by removing the following line: +# . /etc/profile.d/apache-ant.sh pkgname=jitsi pkgver=2.10.5550 -pkgrel=5 +pkgrel=6 pkgdesc="An audio/video SIP VoIP phone and instant messenger written in Java (formerly SIP-Communicator)" arch=('i686' 'x86_64') url="http://jitsi.org" @@ -28,7 +30,6 @@ build() cd "${srcdir}/${pkgname}" # append the build revision to the jitsi version sed -i "s/0\.build\.by\.SVN/build.${pkgver}/" src/net/java/sip/communicator/impl/version/NightlyBuildID.java - . /etc/profile.d/apache-ant.sh ant rebuild } |