aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorYann Collet <yann.collet.73@gmail.com>2014-11-30 23:37:55 +0100
committerMohamad Ayyash <mkayyash@google.com>2015-02-23 17:26:20 -0800
commit89af091dc2c8f0ec65cc68a67b8d13a4613f6599 (patch)
tree431704b8420dbf5a54eadcacd98545311eed6c2b
parentbb8515c67cab02c4401b7d72af8a27c08760d094 (diff)
downloadandroid_external_lz4-89af091dc2c8f0ec65cc68a67b8d13a4613f6599.tar.gz
android_external_lz4-89af091dc2c8f0ec65cc68a67b8d13a4613f6599.tar.bz2
android_external_lz4-89af091dc2c8f0ec65cc68a67b8d13a4613f6599.zip
fix : sudo for make install
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 60f8ce1..d8c2621 100644
--- a/Makefile
+++ b/Makefile
@@ -93,8 +93,8 @@ clean:
ifneq (,$(filter $(shell uname),Linux Darwin GNU/kFreeBSD GNU))
install:
- @cd $(LZ4DIR); $(MAKE) -e install
- @cd $(PRGDIR); $(MAKE) -e install
+ @cd $(LZ4DIR); sudo $(MAKE) -e install
+ @cd $(PRGDIR); sudo $(MAKE) -e install
uninstall:
@cd $(LZ4DIR); $(MAKE) uninstall