1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-25 00:51:21 +00:00

- Add rmdir $prefix/lib/octave/packages to the end of the installation script.

This is because the octave packaging process can fail to delete this
  directory when it becomes empty.
- Update to 1.3.

Submitted by:	Dmitry Marakasov <amdmi3@amdmi3.ru>
This commit is contained in:
Stephen Montgomery-Smith 2015-10-04 01:33:49 +00:00
parent cc013ca6a4
commit 4604233157
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=398561
2 changed files with 6 additions and 2 deletions

View File

@ -2,8 +2,7 @@
# $FreeBSD$
PORTNAME= octave-forge-base
PORTVERSION= 1.2
PORTREVISION= 6
PORTVERSION= 1.3
CATEGORIES= math
MASTER_SITES= #none
DISTFILES= #none

View File

@ -240,3 +240,8 @@ foreach my $p (@ordered_list_to_install) {
print "load-octave-pkg: octave is installing $p.\n";
system "octave -H -q --no-site-file --eval \"pkg('install','$tardir/$p')\" > /dev/null\n";
}
# Remove directories that may have been left behind by the octave packaging
# process.
rmdir "$prefix/lib/octave/packages";