diff options
author | davilla <davilla@4pi.com> | 2013-03-02 20:46:51 -0500 |
---|---|---|
committer | davilla <davilla@4pi.com> | 2013-03-02 20:46:51 -0500 |
commit | 92a546ddc3875110c0026af9c96cef0fb3e731eb (patch) | |
tree | 21779a8208656291a4823207f851ca9992889faf | |
parent | 1e3734e8059016d783018a90cea5395ca3db342e (diff) |
fix libcec build and version bump to match
-rw-r--r-- | lib/libcec/Makefile | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/lib/libcec/Makefile b/lib/libcec/Makefile index e48760ffc1..bb837d1359 100644 --- a/lib/libcec/Makefile +++ b/lib/libcec/Makefile @@ -7,7 +7,7 @@ # lib name, version LIBNAME=libcec -VERSION=2.0.3 +VERSION=2.1.0 SOURCE=$(LIBNAME)-$(VERSION) # download location and format @@ -36,19 +36,19 @@ $(LIBNAME): $(TARBALLS_LOCATION)/$(ARCHIVE) rm -rf $(LIBNAME) $(ARCHIVE_TOOL) $(ARCHIVE_TOOL_FLAGS) $(TARBALLS_LOCATION)/$(ARCHIVE) echo $(LIBNAME) > .gitignore - cd $(LIBNAME); autoreconf -vif - cd $(LIBNAME); $(CONFIGURE) + cd $(SOURCE); autoreconf -vif + cd $(SOURCE); $(CONFIGURE) $(SO_NAME): $(LIBNAME) - make -j 1 -C $(LIBNAME) + make -j 1 -C $(SOURCE) install: - make -C $(LIBNAME) install + make -C $(SOURCE) install ldconfig clean: - rm -rf $(LIBNAME) + rm -rf $(SOURCE) distclean:: - rm -rf $(LIBNAME) + rm -rf $(SOURCE) |