diff --git a/Makefile b/Makefile
index 51a149f17269068845b8f2eda1ad21cadb848538..66afe5019a6a8e9c59f5b26e873cf50075e2e053 100644
--- a/Makefile
+++ b/Makefile
@@ -120,7 +120,7 @@ _release-test-artifacts:
 
 release-test-artifacts: dist _release-test-artifacts
 
-_release-aritfacts: release-test-artifacts
+_release-aritfacts:
 	@while [ -z "$$CONTINUE" ]; do \
 	  read -r -p "Have you executed release-test and reviewed results? [y/N]: " CONTINUE; \
 	done ; \
diff --git a/setup.py b/setup.py
index 63eecebce1ebff147243a834f782f0db467a05e5..07c1f730c64002f7974131c230bc5d81f07e6753 100644
--- a/setup.py
+++ b/setup.py
@@ -17,7 +17,8 @@ except ImportError:
 
 # Set environment variable to 1 to build as library for Galaxy instead
 # of as stand-alone app.
-PULSAR_GALAXY_LIB = os.environ.get("PULSAR_GALAXY_LIB", "0") == "1"
+DEFAULT_PULSAR_GALAXY_LIB = 0
+PULSAR_GALAXY_LIB = os.environ.get("PULSAR_GALAXY_LIB", "%d" % DEFAULT_PULSAR_GALAXY_LIB) == "1"
 
 readme = open('README.rst').read()
 history = open('HISTORY.rst').read().replace('.. :changelog:', '')