diff options
| author | Luis Hector Chavez <lhchavez@google.com> | 2018-10-05 14:20:29 -0700 |
|---|---|---|
| committer | Luis Hector Chavez <lhchavez@google.com> | 2018-10-05 14:45:46 -0700 |
| commit | f6423bb75c60d5c2cca0431355fa8e93037c34eb (patch) | |
| tree | c0c2bbe630022025f932c2d759684a55b365cd68 /Makefile | |
| parent | 689deb77cff5f5d2c02882e5bd1a23cec452b202 (diff) | |
| download | platform_external_minijail-master-cuttlefish-testing-release.tar.gz platform_external_minijail-master-cuttlefish-testing-release.tar.bz2 platform_external_minijail-master-cuttlefish-testing-release.zip | |
Makefile: Add the leading / to LIBDIRandroid-o-mr1-iot-release-smart-display-r3oreo-mr1-1.2-iot-releasemaster-cuttlefish-testing-release
This change allows the use of an absolute path for LIBDIR. This should
make it easier to locally test changes that use libminijailpreload.so
Bug: None
Test: LIBDIR=${PWD} make && ./minijail0
Change-Id: I8558fce40e916536a52b064a168f4326e4ba8793
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -5,9 +5,9 @@ BASE_VER=0 include common.mk -LIBDIR ?= lib +LIBDIR ?= /lib PRELOADNAME = libminijailpreload.so -PRELOADPATH = \"/$(LIBDIR)/$(PRELOADNAME)\" +PRELOADPATH = \"$(LIBDIR)/$(PRELOADNAME)\" CPPFLAGS += -DPRELOADPATH="$(PRELOADPATH)" ifneq ($(HAVE_SECUREBITS_H),no) |
