[asterisk-commits] res/Makefile: Fix bug in "clean" target for ari (asterisk[13])
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Mon Feb 1 13:48:09 CST 2016
Joshua Colp has submitted this change and it was merged.
Change subject: res/Makefile: Fix bug in "clean" target for ari
......................................................................
res/Makefile: Fix bug in "clean" target for ari
The "clean" target was attempting to clean res/ari from inside
the res directory which doesn't remove anything. Removed the res/
prefix.
Change-Id: Ib1a518d54efa81b9fd5a42742d43cc3767435bf6
---
M res/Makefile
1 file changed, 1 insertion(+), 1 deletion(-)
Approvals:
Mark Michelson: Looks good to me, but someone else must approve
Richard Mudgett: Looks good to me, but someone else must approve
Anonymous Coward #1000019: Verified
Joshua Colp: Looks good to me, approved
diff --git a/res/Makefile b/res/Makefile
index d2a2ad9..d5e0e37 100644
--- a/res/Makefile
+++ b/res/Makefile
@@ -81,7 +81,7 @@
rm -f stasis/*.[oi] stasis/*.gcda stasis/*.gcno
rm -f parking/*.[oi] parking/*.gcda parking/*.gcno
rm -f stasis_recording/*.[oi] stasis_recording/*.gcda stasis_recording/*.gcno
- rm -f res/ari/*.[oi] res/ari/*.gcda res/ari/*.gcno
+ rm -f ari/*.[oi] ari/*.gcda ari/*.gcno
$(if $(filter res_parking,$(EMBEDDED_MODS)),modules.link,res_parking.so): $(subst .c,.o,$(wildcard parking/*.c))
$(subst .c,.o,$(wildcard parking/*.c)): _ASTCFLAGS+=$(call MOD_ASTCFLAGS,res_parking)
--
To view, visit https://gerrit.asterisk.org/2136
To unsubscribe, visit https://gerrit.asterisk.org/settings
Gerrit-MessageType: merged
Gerrit-Change-Id: Ib1a518d54efa81b9fd5a42742d43cc3767435bf6
Gerrit-PatchSet: 2
Gerrit-Project: asterisk
Gerrit-Branch: 13
Gerrit-Owner: George Joseph <george.joseph at fairview5.com>
Gerrit-Reviewer: Anonymous Coward #1000019
Gerrit-Reviewer: Joshua Colp <jcolp at digium.com>
Gerrit-Reviewer: Mark Michelson <mmichelson at digium.com>
Gerrit-Reviewer: Richard Mudgett <rmudgett at digium.com>
More information about the asterisk-commits
mailing list