#!/bin/sh # # Created by: Vincent Stemen # Date: Mon Jul 5 23:24:50 CDT 2010 # This patch file is self applying. # It can be applied by directly executing it in the directory of the # file, being patched, or it can be applied the usual way # (e.g. patch < this_patch_file). # # This fixes a bug. It called make directly which breaks on platforms # where it is being compiled under gmake. patch < $0 exit --- modules_k/db_text/Makefile.orig 2010-07-05 23:22:42 -0500 +++ modules_k/db_text/Makefile 2010-07-05 23:23:40 -0500 @@ -24,7 +24,7 @@ # extra install for kamailio install-dbtext-scripts: $(bin_prefix)/$(bin_dir) - DBTEXTON=yes make -C ../../utils/kamctl/ install-modules + DBTEXTON=yes $(MAKE) -C ../../utils/kamctl/ install-modules install-scripts: install-dbtext-scripts