Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix cut-and-paste error in Makefile #189

Merged
merged 1 commit into from
Apr 21, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion gridftp/control/source/Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ DOC_STAMPS =
if ENABLE_DOXYGEN
DOC_STAMPS += doc-stamp

doc-stamp: Doxyfile $(libglobus_common_la_SOURCES) globus_gridftp_protocol_extensions.dox
doc-stamp: Doxyfile $(libglobus_ftp_control_la_SOURCES) globus_gridftp_protocol_extensions.dox
rm -rf doc
$(DOXYGEN)
touch $@
Expand Down
2 changes: 1 addition & 1 deletion gridftp/control/source/configure.ac
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
AC_PREREQ([2.60])

AC_INIT([globus_ftp_control], [9.9], [https://github.com/gridcf/gct/issues])
AC_INIT([globus_ftp_control], [9.10], [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 gridftp/net_manager/Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ DOC_STAMPS =
if ENABLE_DOXYGEN
DOC_STAMPS += doc-stamp

doc-stamp: Doxyfile $(libglobus_common_la_SOURCES)
doc-stamp: Doxyfile $(libglobus_net_manager_la_SOURCES)
rm -rf doc
$(DOXYGEN)
touch $@
Expand Down
2 changes: 1 addition & 1 deletion gridftp/net_manager/configure.ac
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
AC_PREREQ([2.60])

AC_INIT([globus_net_manager],[1.6],[https://github.com/gridcf/gct/issues])
AC_INIT([globus_net_manager],[1.7],[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 gsi/gridmap_callout/source/Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ DOC_STAMPS =
if ENABLE_DOXYGEN
DOC_STAMPS += doc-stamp

doc-stamp: Doxyfile $(libglobus_gridmap_callout_error_la_SOURCES)
doc-stamp: Doxyfile $(libglobus_gridmap_callout_la_SOURCES)
rm -rf doc
$(DOXYGEN)
touch $@
Expand Down
6 changes: 6 additions & 0 deletions packaging/debian/globus-ftp-control/debian/changelog.in
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
globus-ftp-control (9.10-1+gct.@distro@) @distro@; urgency=medium

* Fix cut-and-paste error in Makefile

-- Mattias Ellert <mattias.ellert@physics.uu.se> Thu, 21 Apr 2022 14:23:33 +0200

globus-ftp-control (9.9-1+gct.@distro@) @distro@; urgency=medium

* Fix some compiler and doxygen warnings
Expand Down
6 changes: 6 additions & 0 deletions packaging/debian/globus-net-manager/debian/changelog.in
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
globus-net-manager (1.7-1+gct.@distro@) @distro@; urgency=medium

* Fix cut-and-paste error in Makefile

-- Mattias Ellert <mattias.ellert@physics.uu.se> Thu, 21 Apr 2022 14:23:58 +0200

globus-net-manager (1.6-1+gct.@distro@) @distro@; urgency=medium

* Doxygen fix
Expand Down
5 changes: 4 additions & 1 deletion packaging/fedora/globus-ftp-control.spec
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
Name: globus-ftp-control
%global soname 1
%global _name %(echo %{name} | tr - _)
Version: 9.9
Version: 9.10
Release: 1%{?dist}
Summary: Grid Community Toolkit - GridFTP Control Library

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

%changelog
* Thu Apr 21 2022 Mattias Ellert <mattias.ellert@physics.uu.se> - 9.10-1
- Fix cut-and-paste error in Makefile

* Wed Mar 09 2022 Mattias Ellert <mattias.ellert@physics.uu.se> - 9.9-1
- Fix some compiler and doxygen warnings

Expand Down
5 changes: 4 additions & 1 deletion packaging/fedora/globus-net-manager.spec
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
Name: globus-net-manager
%global soname 0
%global _name %(echo %{name} | tr - _)
Version: 1.6
Version: 1.7
Release: 1%{?dist}
Summary: Grid Community Toolkit - Network Manager Library

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

%changelog
* Thu Apr 21 2022 Mattias Ellert <mattias.ellert@physics.uu.se> - 1.7-1
- Fix cut-and-paste error in Makefile

* Fri Mar 26 2021 Mattias Ellert <mattias.ellert@physics.uu.se> - 1.6-1
- Doxygen fix

Expand Down