Fix copy-platform-all script for dropins.

This commit is contained in:
Roland Grunberg 2014-11-17 13:46:50 -05:00
parent ae5780c5ab
commit 37d8accd7c
2 changed files with 6 additions and 5 deletions

View File

@ -57,15 +57,13 @@ pushd $sdk >/dev/null
(cd $datadir/dropins/$f/eclipse;
ls -d plugins/* features/* 2>/dev/null) |
while read g; do
[ ! -e $g ] && \
ln -s $datadir/dropins/$f/eclipse/$g $g
ln -sf $datadir/dropins/$f/eclipse/$g $g
done
else
(cd $datadir/dropins/$f;
ls -d plugins/* features/* 2>/dev/null) |
while read g; do
[ ! -e $g ] && \
ln -s $datadir/dropins/$f/$g $g
ln -sf $datadir/dropins/$f/$g $g
done
fi
done

View File

@ -19,7 +19,7 @@
Name: tycho
Version: 0.21.0
Release: 1%{?dist}
Release: 2%{?dist}
Summary: Plugins and extensions for building Eclipse plugins and OSGI bundles with Maven
Group: Development/Libraries
@ -355,6 +355,9 @@ install -m 644 $osgiStateJarPath $RPM_BUILD_ROOT%{_javadir}/%{name}/osgi.compati
%{_javadocdir}/%{name}
%changelog
* Mon Nov 17 2014 rgrunber@redhat.com - 0.21.0-2
- Fix copy-platform-all script for dropins.
* Thu Jul 24 2014 Roland Grunberg <rgrunber@redhat.com> - 0.21.0-1
- Update to 0.21.0 Release.