diff options
-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} |