aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordavilla <davilla@4pi.com>2013-03-02 20:46:51 -0500
committerdavilla <davilla@4pi.com>2013-03-02 20:46:51 -0500
commit92a546ddc3875110c0026af9c96cef0fb3e731eb (patch)
tree21779a8208656291a4823207f851ca9992889faf
parent1e3734e8059016d783018a90cea5395ca3db342e (diff)
fix libcec build and version bump to match
-rw-r--r--lib/libcec/Makefile14
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)