diff -r c71f34180df2 -r db8ff415ba49 components/python/cssutils/Makefile --- a/components/python/cssutils/Makefile Thu Oct 29 02:40:10 2015 -0700 +++ b/components/python/cssutils/Makefile Thu Oct 29 07:57:11 2015 -0700 @@ -52,29 +52,6 @@ /usr/bin/find $(SOURCE_DIR)/src \ -name *.py -exec $(GSED) -i -e 's/ //g' "{}" \; ; -# After we have done each Python build, copy it to its own version specific -# source hierarchy and then adjust the shebang lines as needed, before we -# build for Python 2.6. Note that this assumes we are only doing Python 2.7 -# and Python 2.6, and we are doing them in that order. -COMPONENT_POST_BUILD_ACTION = \ - (cd $(SOURCE_DIR); cp -rp src src-$(PYTHON_VERSION) ; \ - cd $(SOURCE_DIR)/src ; \ - $(GSED) -i -e 's/2[.]7/2.6/g' cssutils/__init__.py ; \ - $(GSED) -i -e 's/2[.]7/2.6/g' cssutils/codec.py ; \ - $(GSED) -i -e 's/2[.]7/2.6/g' cssutils/errorhandler.py ; \ - $(GSED) -i -e 's/2[.]7/2.6/g' cssutils/parse.py ; \ - $(GSED) -i -e 's/2[.]7/2.6/g' cssutils/scripts/csscapture.py ; \ - $(GSED) -i -e 's/2[.]7/2.6/g' cssutils/scripts/csscombine.py ; \ - $(GSED) -i -e 's/2[.]7/2.6/g' cssutils/scripts/cssparse.py ; \ - $(GSED) -i -e 's/2[.]7/2.6/g' cssutils/serialize.py ; \ - $(GSED) -i -e 's/2[.]7/2.6/g' cssutils/tokenize2.py ; \ - $(GSED) -i -e 's/2[.]7/2.6/g' encutils/__init__.py ) - -# Copy over the source hierarchy for the appropriate Python build before -# installing it. -COMPONENT_PRE_INSTALL_ACTION = \ - (cd $(SOURCE_DIR); $(RM) -r src ; $(CP) -rp src-$(PYTHON_VERSION) src ) - ASLR_MODE = $(ASLR_NOT_APPLICABLE) build: $(BUILD_NO_ARCH) @@ -84,4 +61,3 @@ test: $(TEST_NO_ARCH) system-test: $(SYSTEM_TESTS_NOT_IMPLEMENTED) -