From c626e300fe85dc9bf2bf2916bf7014f316dafa46 Mon Sep 17 00:00:00 2001 From: Stefan Sayer Date: Fri, 24 Sep 2010 04:58:01 +0200 Subject: [PATCH] removed unnecessary link dep on libutil --- apps/dsm/mods/mod_py/Makefile | 3 +-- apps/ivr/Makefile | 3 +-- apps/py_sems/Makefile | 2 +- 3 files changed, 3 insertions(+), 5 deletions(-) diff --git a/apps/dsm/mods/mod_py/Makefile b/apps/dsm/mods/mod_py/Makefile index 67bc7798..f1088ae8 100644 --- a/apps/dsm/mods/mod_py/Makefile +++ b/apps/dsm/mods/mod_py/Makefile @@ -18,8 +18,7 @@ PYTHON_module_cflags = -I$(PYTHON_DIR) -fno-strict-aliasing PYTHON_module_ldflags = -L$(PYTHON_LIBDIR)/config \ -lpython$(PY_VER) -module_ldflags = -lutil \ - $(PYTHON_module_ldflags) \ +module_ldflags = $(PYTHON_module_ldflags) module_cflags = \ $(PYTHON_module_cflags) \ diff --git a/apps/ivr/Makefile b/apps/ivr/Makefile index adfe22c9..4982c8cf 100644 --- a/apps/ivr/Makefile +++ b/apps/ivr/Makefile @@ -33,8 +33,7 @@ endif LOCAL_INCLUDES = -I$(FLITE_DIR)/lang/usenglish -module_ldflags = -lutil \ - $(PYTHON_module_ldflags) \ +module_ldflags = $(PYTHON_module_ldflags) \ $(IVR_TTS_module_ldflags) # for perl support: diff --git a/apps/py_sems/Makefile b/apps/py_sems/Makefile index 5dac1be7..561b555c 100644 --- a/apps/py_sems/Makefile +++ b/apps/py_sems/Makefile @@ -28,7 +28,7 @@ endif LOCAL_INCLUDES = -I$(FLITE_DIR)/lang/usenglish # On FreeBSD, remove the following flags: -ldl -lpthread -module_ldflags = -ldl -lpthread -lutil -lm \ +module_ldflags = -ldl -lpthread -lm \ $(PYTHON_module_ldflags) \ $(PY_SEMS_TTS_module_ldflags)