summaryrefslogtreecommitdiffstats
path: root/rules/libpcap.make
diff options
context:
space:
mode:
authorRobert Schwebel <r.schwebel@pengutronix.de>2005-04-13 17:48:15 +0000
committerRobert Schwebel <r.schwebel@pengutronix.de>2005-04-13 17:48:15 +0000
commite97491ab00a56c2d4efad5eff8ab1a9e16478380 (patch)
treedd8228481c223807f63f19dc5f789e4ac9ba48ed /rules/libpcap.make
parentb219c819bc51999a98984839eb2c5fd0e7aeb9f2 (diff)
downloadptxdist-e97491ab00a56c2d4efad5eff8ab1a9e16478380.tar.gz
ptxdist-e97491ab00a56c2d4efad5eff8ab1a9e16478380.tar.xz
fix -C
git-svn-id: https://svn.pengutronix.de/svn/ptxdist/trunks/ptxdist-0.7-trunk@2455 33e552b5-05e3-0310-8538-816dae2090ed
Diffstat (limited to 'rules/libpcap.make')
-rw-r--r--rules/libpcap.make4
1 files changed, 2 insertions, 2 deletions
diff --git a/rules/libpcap.make b/rules/libpcap.make
index 4203198b2..5520987a3 100644
--- a/rules/libpcap.make
+++ b/rules/libpcap.make
@@ -100,7 +100,7 @@ libpcap_compile_deps = $(STATEDIR)/libpcap.prepare
$(STATEDIR)/libpcap.compile: $(libpcap_compile_deps)
@$(call targetinfo, $@)
- $(LIBPCAP_PATH) make -C $(LIBPCAP_DIR)
+ cd $(LIBPCAP_DIR) && $(LIBPCAP_PATH) make
touch $@
# ----------------------------------------------------------------------------
@@ -111,7 +111,7 @@ libpcap_install: $(STATEDIR)/libpcap.install
$(STATEDIR)/libpcap.install: $(STATEDIR)/libpcap.compile
@$(call targetinfo, $@)
- $(LIBPCAP_PATH) make -C $(LIBPCAP_DIR) install
+ cd $(LIBPCAP_DIR) && $(LIBPCAP_PATH) make install
touch $@
# ----------------------------------------------------------------------------