From 2461368ae2bfc3578e2bd3a6d5460820cae23b87 Mon Sep 17 00:00:00 2001 From: Stefan Sayer Date: Tue, 30 Mar 2010 19:28:29 +0000 Subject: [PATCH] installation fix: don't install CMakeLists.txt as scripts (from 1.2) git-svn-id: http://svn.berlios.de/svnroot/repos/sems/trunk@1720 8eb893ce-cfd4-0310-b710-fb5ebe64c474 --- core/plug-in/Makefile.app_module | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/plug-in/Makefile.app_module b/core/plug-in/Makefile.app_module index 8b7acaab..c099e97a 100644 --- a/core/plug-in/Makefile.app_module +++ b/core/plug-in/Makefile.app_module @@ -18,7 +18,7 @@ lib_full_name ?= $(app_module_dir)/$(lib_name) module_conf_files = $(wildcard etc/*.conf) AUDIO_FILES=$(notdir $(wildcard wav/*.wav)) EXTRA_LIB_DIR?=lib/ -EXTRA_LIB_FILES=$(notdir $(wildcard $(EXTRA_LIB_DIR)*)) +EXTRA_LIB_FILES=$(filter-out CMakeLists.txt, $(notdir $(wildcard $(EXTRA_LIB_DIR)*))) srcs = $(wildcard *.cpp) hrds = $(wildcard *.h)