Fixes error during make: "No rule to make target '../src/libemilia_pin.a', needed by 'pinball'. Stop." --- pinball-0.3.1/src/Makefile.in 2003-12-10 05:34:47.000000000 -0600 +++ pinball-0.3.1/src/Makefile.in 2016-01-31 22:29:13.134519889 -0600 @@ -116,7 +116,7 @@ INCLUDES = -I../base -I../addon @INCLTDL@ -pinball_LDADD = ../src/libemilia_pin.a ../addon/libemilia_addon.a ../base/libemilia_base.a @LIBLTDL@ +pinball_LDADD = libemilia_pin.a ../addon/libemilia_addon.a ../base/libemilia_base.a @LIBLTDL@ pinball_LDFLAGS = -export-dynamic pinball_SOURCES = Pinball.cpp @@ -174,7 +174,7 @@ am_pinball_OBJECTS = Pinball.$(OBJEXT) pinball_OBJECTS = $(am_pinball_OBJECTS) -pinball_DEPENDENCIES = ../src/libemilia_pin.a ../addon/libemilia_addon.a \ +pinball_DEPENDENCIES = libemilia_pin.a ../addon/libemilia_addon.a \ ../base/libemilia_base.a DEFS = @DEFS@ ch'/> Wojtek's customized Guix
aboutsummaryrefslogtreecommitdiff
path: root/bootstrap
ts.scm
AgeCommit message (Expand)Author
AgeCommit message (Expand)Author
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-04-10installer: tests: Don't install to a CD/DVD....* gnu/installer/tests.scm (choose-partitioning): Use 'find' to select the disk. Ludovic Courtès
2020-03-26installer: tests: Use a filter to select desktop-environments....* gnu/installer/tests.scm (choose-services): Turn desktop-environments list into a choose-desktop-environment procedure. This way, it is easier to select all desktop-environments or none, in the same way as choose-network-service? and choose-network-management-tool? arguments. Mathieu Othacehe
2020-03-05tests: install: Add "gui-installed-os"....* gnu/installer/tests.scm: New file. * gnu/local.mk (INSTALLER_MODULES): Add it. * gnu/tests/install.scm (run-install): Add #:gui-test. Add (gnu installer tests) to the marionette imported modules. Honor GUI-TEST. Check whether SCRIPT is true. (%root-password, %syslog-conf): New variable. (operating-system-with-console-syslog, gui-test-program) (guided-installation-test): New procedures. (%extra-packages, installation-os-for-gui-tests) (%test-gui-installed-os): New variable. Ludovic Courtès