Only install the ipa.conf file if it does not exist.

This commit is contained in:
Karl MacMillan
-
parent 84d3b7be58
commit 66ab69d0b2

View File

@@ -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
rm -f *~ *.pyc