From b45f263b7f87f8f0ce1e6659021688a55595f701 Mon Sep 17 00:00:00 2001 From: Mathieu Desnoyers Date: Thu, 20 Jun 2013 09:21:03 -0400 Subject: [PATCH] example makefile: add missing cd .. Signed-off-by: Mathieu Desnoyers --- doc/examples/Makefile.am | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/examples/Makefile.am b/doc/examples/Makefile.am index 6f427c0..0d0c021 100644 --- a/doc/examples/Makefile.am +++ b/doc/examples/Makefile.am @@ -14,11 +14,11 @@ SUBDIRS_PROXY = qsbr-minimal all-local: for subdir in $(SUBDIRS_PROXY); do \ - cd $$subdir && $(MAKE) AM_CPPFLAGS="-I../../../urcu/ -I../../../" AM_LDFLAGS='-L../../../.libs/ -Wl,-rpath="$(PWD)/../../.libs/"' $(AM_MAKEFLAGS) all; \ + cd $$subdir && $(MAKE) AM_CPPFLAGS="-I../../../urcu/ -I../../../" AM_LDFLAGS='-L../../../.libs/ -Wl,-rpath="$(PWD)/../../.libs/"' $(AM_MAKEFLAGS) all; cd ..; \ done clean-local: for subdir in $(SUBDIRS_PROXY); do \ - cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) clean; \ + cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) clean; cd ..; \ done endif -- 2.34.1