diff options
author | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2007-10-25 20:56:14 +0000 |
---|---|---|
committer | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2007-10-25 20:56:14 +0000 |
commit | da79274a2d095270ddc73822ab0eeb3647db3ebd (patch) | |
tree | 764e87320458399ccae4c977b2102eebbc58fcae | |
parent | a9d2342f6af5d9e1fb2a6e42d71493300c0c39f9 (diff) |
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
-rwxr-xr-x | configure | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -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})); |