Skip to content

Commit

Permalink
Fix spelling
Browse files Browse the repository at this point in the history
  • Loading branch information
ellert committed Mar 12, 2020
1 parent 6d00d81 commit af288c7
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 4 deletions.
6 changes: 6 additions & 0 deletions packaging/debian/globus-xio/debian/changelog.in
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
globus-xio (6.4-1+gct.@distro@) @distro@; urgency=medium

* Fix spelling

-- Mattias Ellert <mattias.ellert@physics.uu.se> Thu, 12 Mar 2020 01:05:19 +0100

globus-xio (6.3-1+gct.@distro@) @distro@; urgency=medium

* Make makefiles exit sooner on errors
Expand Down
5 changes: 4 additions & 1 deletion packaging/fedora/globus-xio.spec
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
Name: globus-xio
%global soname 0
%global _name %(echo %{name} | tr - _)
Version: 6.3
Version: 6.4
Release: 1%{?dist}
Summary: Grid Community Toolkit - Globus XIO Framework

Expand Down Expand Up @@ -133,6 +133,9 @@ GLOBUS_HOSTNAME=localhost make %{?_smp_mflags} check VERBOSE=1
%doc %{_pkgdocdir}/GLOBUS_LICENSE

%changelog
* Thu Mar 12 2020 Mattias Ellert <mattias.ellert@physics.uu.se> - 6.4-1
- Fix spelling

* Tue Mar 10 2020 Mattias Ellert <mattias.ellert@physics.uu.se> - 6.3-1
- Make makefiles exit sooner on errors

Expand Down
2 changes: 1 addition & 1 deletion xio/src/configure.ac
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
AC_PREREQ([2.60])

AC_INIT([globus_xio], [6.3], [https://github.com/gridcf/gct/issues])
AC_INIT([globus_xio], [6.4], [https://github.com/gridcf/gct/issues])
AC_CONFIG_MACRO_DIR([m4])
AC_SUBST(MAJOR_VERSION, [${PACKAGE_VERSION%%.*}])
AC_SUBST(MINOR_VERSION, [${PACKAGE_VERSION##*.}])
Expand Down
2 changes: 1 addition & 1 deletion xio/src/test/Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ endif

TESTS = $(check_SCRIPTS) $(check_PROGRAMS_NO_SCRIPT)
TESTS_ENVIRONMENT = \
export XIO_TEST_OUPUT_DIR=test_output/$$$$ \
export XIO_TEST_OUTPUT_DIR=test_output/$$$$ \
TEST_DATA_DIR=$(TEST_DATA_DIR) ;

AM_CPPFLAGS = \
Expand Down
2 changes: 1 addition & 1 deletion xio/src/test/test-common.pl
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ sub run_test
my $cmd=(shift);
my $test_str=(shift);
my ($errors,$rc) = ("",0);
my $output_dir=$ENV{'XIO_TEST_OUPUT_DIR'};
my $output_dir=$ENV{'XIO_TEST_OUTPUT_DIR'};

# delete the output dir if it exists
$rc = system("mkdir -p $output_dir");
Expand Down

0 comments on commit af288c7

Please sign in to comment.