diff --git a/ipa-python/Makefile b/ipa-python/Makefile index 85acdb678..b2e4660f8 100644 --- a/ipa-python/Makefile +++ b/ipa-python/Makefile @@ -8,7 +8,10 @@ install: -mkdir -p $(PACKAGEDIR) install -m 644 *.py $(PACKAGEDIR) -mkdir -p $(CONFIGDIR) - install -m 644 ipa.conf $(CONFIGDIR) + if ! [ -e $(CONFIGDIR)/ipa.conf ]; then \ + install -m 644 ipa.conf $(CONFIGDIR); \ + fi clean: - rm -f *~ *.pyc \ No newline at end of file + rm -f *~ *.pyc +