Upstream status: https://github.com/orangeduck/mpc/pull/160 diff --git a/Makefile b/Makefile index 7719acc..fe798c5 100644 --- a/Makefile +++ b/Makefile @@ -15,7 +15,7 @@ EXAMPLESEXE = $(EXAMPLES:.c=) .PHONY: all check clean libs $(DIST)/$(PROJ).pc -all: $(EXAMPLESEXE) check +all: $(EXAMPLESEXE) check libs $(DIST)/$(PROJ).pc $(DIST): $(MKDIR) $(DIST) @@ -65,7 +65,8 @@ install: all install -m755 -t $(DESTDIR)$(PREFIX)/lib $(DIST)/lib* install -m644 -t $(DESTDIR)$(PREFIX)/share/$(PROJ) $(PROJ).c $(PROJ).h install -m644 $(PROJ).h $(DESTDIR)$(PREFIX)/include/$(PROJ).h - install -m644 $(PROJ).pc $(DESTDIR)$(PREFIX)/lib/pkgconfig/$(PROJ).pc + install -m644 $(DIST)/$(PROJ).pc \ + $(DESTDIR)$(PREFIX)/lib/pkgconfig/$(PROJ).pc uninstall: rm -rf -- \ o-scripts Wojtek's customized Guix
aboutsummaryrefslogtreecommitdiff
path: root/gnu/tests.scm
AgeCommit message (Expand)Author
2023-11-05tests: Honor system and target when lowering <system-test>....* gnu/tests.scm (compile-system-test): Wrap ‘system-test-value’ call in ‘mparameterize’. Change-Id: I4be28913a86f43059b0886ad2fcf81a9c699b730 Ludovic Courtès
2023-04-21tests: Fork and exec a new Guile for the marionette REPL....By merely forking PID 1, details from PID 1 (shepherd) would leak into the marionette process, such as the set of modules in scope and state inherited from the shepherd process (<service> instances, fibers, etc.). Running a fresh Guile instance avoids that. * gnu/tests.scm (marionette-program): New procedure. (marionette-shepherd-service): Change 'start' to use 'make-forkexec-constructor', and run the result of 'marionette-program'. Ludovic Courtès