From f221a1a6c3dca7c3564d93b3769009c848e84624 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Love=20H=C3=B6rnquist=20=C3=85strand?= Date: Thu, 1 Apr 2004 12:34:22 +0000 Subject: [PATCH] handle sed expression breaking git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@13670 ec53bebd-3082-4978-b11e-865c3cabbd6b --- tools/Makefile.am | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/tools/Makefile.am b/tools/Makefile.am index 5d37a2e11..a03f1d5ed 100644 --- a/tools/Makefile.am +++ b/tools/Makefile.am @@ -4,7 +4,7 @@ include $(top_srcdir)/Makefile.am.common EXTRA_DIST = krb5-config.1 -CLEANFILES = krb5-config +CLEANFILES = krb5-config krb5-config.new bin_SCRIPTS = krb5-config @@ -22,5 +22,6 @@ krb5-config: krb5-config.in -e "s,@INCLUDE_des\@,$(INCLUDE_des),g" \ -e "s,@LIB_des_appl\@,$(LIB_des_appl),g" \ -e "s,@LIBS\@,$(LIBS),g" \ - $(srcdir)/krb5-config.in > $@ + $(srcdir)/krb5-config.in > $@.new + mv $@.new $@ chmod +x $@