diff options
author | Laurent Bercot <ska-skaware@skarnet.org> | 2016-08-16 12:47:19 +0000 |
---|---|---|
committer | Laurent Bercot <ska-skaware@skarnet.org> | 2016-08-16 12:47:19 +0000 |
commit | 134edc9b263cf09a84efab138afc1a852d476a98 (patch) | |
tree | a1d322860bc87032659d5f83648dd3c50994da41 | |
parent | 61c85a27095a6477195736ae065541acfc5d5098 (diff) | |
download | execline-134edc9b263cf09a84efab138afc1a852d476a98.tar.xz |
Apply Eric's patch for spawn support
-rw-r--r-- | AUTHORS | 1 | ||||
-rw-r--r-- | package/deps.mak | 2 | ||||
-rw-r--r-- | src/execline/deps-exe/foreground | 1 |
3 files changed, 3 insertions, 1 deletions
@@ -4,6 +4,7 @@ Main author: Contributors: Jean Marot <marot@quatramaran.ens.fr> Paul Jarc <prj@dogmap.org> + Eric Le Bihan <eric.le.bihan.dev@free.fr> Thanks to: Dan J. Bernstein <djb@cr.yp.to> diff --git a/package/deps.mak b/package/deps.mak index 709808d..c29928b 100644 --- a/package/deps.mak +++ b/package/deps.mak @@ -110,7 +110,7 @@ fdswap: EXTRA_LIBS := fdswap: src/execline/fdswap.o -lskarnet forbacktickx: EXTRA_LIBS := forbacktickx: src/execline/forbacktickx.o -lskarnet -foreground: EXTRA_LIBS := +foreground: EXTRA_LIBS := ${SPAWN_LIB} foreground: src/execline/foreground.o ${LIBEXECLINE} -lskarnet forstdin: EXTRA_LIBS := ${SPAWN_LIB} forstdin: src/execline/forstdin.o ${LIBEXECLINE} -lskarnet diff --git a/src/execline/deps-exe/foreground b/src/execline/deps-exe/foreground index 97021b5..7161673 100644 --- a/src/execline/deps-exe/foreground +++ b/src/execline/deps-exe/foreground @@ -1,2 +1,3 @@ ${LIBEXECLINE} -lskarnet +${SPAWN_LIB} |