Don't build the GCTP bundled with the source and link with the system's -lgctp instead. We also remove references to the "testdrivers" directory, which is not distributed together with the source, causing autoreconf to fail. diff --git a/Makefile.in b/Makefile.in index d468af2..90428a7 100644 --- a/Makefile.in +++ b/Makefile.in @@ -206,7 +206,7 @@ LIBGCTP = $(top_builddir)/gctp/src/libGctp.la @TESTDRIVERS_CONDITIONAL_TRUE@TESTDRIVERS = testdrivers @INSTALL_INCLUDE_CONDITIONAL_FALSE@INCLUDE = @INSTALL_INCLUDE_CONDITIONAL_TRUE@INCLUDE = include -SUBDIRS = gctp src $(INCLUDE) samples $(TESTDRIVERS) +SUBDIRS = src $(INCLUDE) samples $(TESTDRIVERS) all: all-recursive .SUFFIXES: diff --git a/include/Makefile.in b/include/Makefile.in index 9938b23..afb7f40 100644 --- a/include/Makefile.in +++ b/include/Makefile.in @@ -190,7 +190,7 @@ LIBGCTP = $(top_builddir)/gctp/src/libGctp.la # Boilerplate include # Headers to install -include_HEADERS = HE2_config.h HdfEosDef.h HDFEOSVersion.h cfortHdf.h ease.h +include_HEADERS = HdfEosDef.h HDFEOSVersion.h cfortHdf.h ease.h all: HE2_config.h $(MAKE) $(AM_MAKEFLAGS) all-am diff --git a/samples/Makefile.in b/samples/Makefile.in index 9da6e28..6a6186c 100644 --- a/samples/Makefile.in +++ b/samples/Makefile.in @@ -108,7 +108,6 @@ AppendField_SOURCES = AppendField.c AppendField_OBJECTS = AppendField.$(OBJEXT) AppendField_LDADD = $(LDADD) am__DEPENDENCIES_1 = $(top_builddir)/src/libhdfeos.la -am__DEPENDENCIES_2 = $(top_builddir)/gctp/src/libGctp.la AppendField_DEPENDENCIES = $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_2) DefineFields_SOURCES = DefineFields.c DefineFields_OBJECTS = DefineFields.$(OBJEXT) @@ -481,7 +480,7 @@ sharedstatedir = @sharedstatedir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ LIBHDFEOS2 = $(top_builddir)/src/libhdfeos.la -LIBGCTP = $(top_builddir)/gctp/src/libGctp.la +LIBGCTP = # Boilerplate definitions file -- 2.10.0 name='q' value=''/>
path: root/gnu/installer/parted.scm
AgeCommit message (Expand)Author
2020-11-17installer: Fix device synchronization....Reported by Florian Pelz: https://lists.gnu.org/archive/html/guix-devel/2020-11/msg00326.html. * gnu/installer/utils.scm (call-with-time): New procedure, (let/time): new macro. * gnu/installer/parted.scm (with-delay-device-in-use?): Increase the retry count to 16. (non-install-devices): Remove the call to with-delay-device-in-use? as it doesn't return the expected result, and would block much longer now. (free-parted): Log the time required to sync each device. Mathieu Othacehe
2020-11-08installer: parted: Add debug output....* gnu/installer/parted.scm (mkpart): Log partition creation. Mathieu Othacehe
2020-11-01installer: parted: Internationalize the partition handling code....* gnu/installer/parted.scm (user-partition-description): Use 'format' and 'G_' for i18n. Ludovic Courtès
2020-10-30installer: Use UUIDs in the 'swap-devices' field....Note: This change requires an updated 'guix' package that contains Linux-swap support in (gnu build file-systems). * gnu/installer/parted.scm (user-partitions->configuration): Use UUIDs in the 'swap-devices' field. * gnu/installer/newt/final.scm (run-final-page)[wait-for-clients]: New procedure. Use it. * gnu/installer/tests.scm (choose-partitioning): Wait for 'starting-final-step' message and move configuration file dialog handling to... (conclude-installation): ... here. Send over PORT the reply corresponding to 'starting-final-step'. * gnu/tests/install.scm (gui-test-program): When ENCRYPTED? is false, invoke 'swaplabel' in the marionette. (installation-target-os-for-gui-tests): When ENCRYPTED? is false, except a fixed UUID. Ludovic Courtès
2020-10-19installer: Create bios_grub partition when it is needed....* gnu/installer/parted.scm (auto-partition!): Only check for ESP on EFI installations. Miguel Ángel Arruga Vivas
2020-09-21installer: Fix docstring typoes....* gnu/installer/connman.scm (connman-state, run-locale-page) (start-swapping, stop-swapping, run-installer-steps): Fix typo in docstring. Tobias Geerinckx-Rice