summaryrefslogtreecommitdiffstats
path: root/rules/portmap.make
diff options
context:
space:
mode:
authorRobert Schwebel <r.schwebel@pengutronix.de>2003-09-17 13:22:39 +0000
committerRobert Schwebel <r.schwebel@pengutronix.de>2003-09-17 13:22:39 +0000
commit9dc625415ae546e36c23ef76cc015d427bf44f51 (patch)
tree7f12e7a3752b44a9f1b900d6d8b385bb55de2b4c /rules/portmap.make
parent1e0016cbc0c7ebf3ae16b7904fcbf14cd6769f85 (diff)
downloadptxdist-9dc625415ae546e36c23ef76cc015d427bf44f51.tar.gz
ptxdist-9dc625415ae546e36c23ef76cc015d427bf44f51.tar.xz
Fixed "compile" target to use correct variables. [RSC]
git-svn-id: https://svn.pengutronix.de/svn/ptxdist/trunk@350 33e552b5-05e3-0310-8538-816dae2090ed
Diffstat (limited to 'rules/portmap.make')
-rw-r--r--rules/portmap.make7
1 files changed, 3 insertions, 4 deletions
diff --git a/rules/portmap.make b/rules/portmap.make
index 3d4e8345b..e2e02bc90 100644
--- a/rules/portmap.make
+++ b/rules/portmap.make
@@ -1,5 +1,5 @@
# -*-makefile-*-
-# $Id: portmap.make,v 1.4 2003/07/16 04:23:28 mkl Exp $
+# $Id: portmap.make,v 1.5 2003/09/17 13:22:39 robert Exp $
#
# (c) 2002 by Pengutronix e.K., Hildesheim, Germany
# See CREDITS for details about who has contributed to this project.
@@ -78,12 +78,11 @@ $(STATEDIR)/portmap.prepare: $(portmap_prepare_deps)
portmap_compile: $(STATEDIR)/portmap.compile
-PORTMAP_ENVIRONMENT = PATH=$(CROSS_PATH)
-PORTMAP_MAKEVARS = $(CROSS_ENV)
+PORTMAP_ENVIRONMENT = $(CROSS_ENV)
$(STATEDIR)/portmap.compile: $(STATEDIR)/portmap.prepare
@$(call targetinfo, portmap.compile)
- $(PORTMAP_ENVIRONMENT) make -C $(PORTMAP_DIR) $(PORTMAP_MAKEVARS)
+ $(PORTMAP_ENVIRONMENT) make -C $(PORTMAP_DIR)
touch $@
# ----------------------------------------------------------------------------