From: brain Date: Thu, 25 Oct 2007 20:56:14 +0000 (+0000) Subject: Forgot these two lines that prevent duplicate make install/deinstall lines X-Git-Tag: v2.0.23~4333 X-Git-Url: https://git.netwichtig.de/gitweb/?a=commitdiff_plain;h=da79274a2d095270ddc73822ab0eeb3647db3ebd;p=user%2Fhenk%2Fcode%2Finspircd.git Forgot these two lines that prevent duplicate make install/deinstall lines git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@8363 e03df62e-2008-0410-955e-edbf42e46eb7 --- diff --git a/configure b/configure index 889667f03..9b22f1e53 100755 --- a/configure +++ b/configure @@ -1514,6 +1514,7 @@ sub write_dynamic_makefile { if (!exists($existing_install_list{$1})) { + $existing_install_list{$1} = 1; $idir = (split(' ',$1))[1]; $ifile = (split(' ',$1))[0]; $install_list = $install_list . " -install -m \$(INSTMODE) $1\n"; @@ -1525,6 +1526,7 @@ sub write_dynamic_makefile { if (!exists($existing_install_list{$1})) { + $existing_install_list{$1} = 1; $idir = (split(' ',$1))[1]; $ifile = (split(' ',$1))[0]; $install_list = $install_list . " -cp $1\n" if (!exists($existing_install_list{$1}));