diff options
author | Eric Andersen <andersen@codepoet.org> | 2003-01-19 06:07:22 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2003-01-19 06:07:22 +0000 |
commit | a9bfe856cf5b524f157cda222c8b2d07f1463be9 (patch) | |
tree | 28e6fb6223262a52d352b9a318897b5e33f26360 /make/stlport.mk | |
parent | b885ae776f81c216927d5ef866ddf09b6778a49b (diff) | |
download | buildroot-novena-a9bfe856cf5b524f157cda222c8b2d07f1463be9.tar.gz buildroot-novena-a9bfe856cf5b524f157cda222c8b2d07f1463be9.zip |
Change from using "TARGET_CC1" to just plan "TARGET_CC"
which is a bit more sensible.
Diffstat (limited to 'make/stlport.mk')
-rw-r--r-- | make/stlport.mk | 21 |
1 files changed, 3 insertions, 18 deletions
diff --git a/make/stlport.mk b/make/stlport.mk index a778b9e79..af60d3055 100644 --- a/make/stlport.mk +++ b/make/stlport.mk @@ -3,22 +3,6 @@ # STLport standard C++ library # ############################################################# -# Copyright (C) 2002 by Erik Andersen <andersen@codepoet.org> -# -# This program is free software; you can redistribute it and/or modify -# it under the terms of the GNU Library General Public License as -# published by the Free Software Foundation; either version 2 of the -# License, or (at your option) any later version. -# -# This program is distributed in the hope that it will be useful, but -# WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -# Library General Public License for more details. -# -# You should have received a copy of the GNU Library General Public -# License along with this program; if not, write to the Free Software -# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 -# USA STLPORT_DIR=$(BUILD_DIR)/STLport-4.5.3 STLPORT_SITE=http://www.stlport.org/archive @@ -30,11 +14,12 @@ $(DL_DIR)/$(STLPORT_SOURCE): stlport-source: $(DL_DIR)/$(STLPORT_SOURCE) $(STLPORT_PATCH) -$(STLPORT_DIR)/Makefile: $(DL_DIR)/$(STLPORT_SOURCE) $(STLPORT_PATCH) +$(STLPORT_DIR)/.configured: $(DL_DIR)/$(STLPORT_SOURCE) $(STLPORT_PATCH) zcat $(DL_DIR)/$(STLPORT_SOURCE) | tar -C $(BUILD_DIR) -xvf - cat $(STLPORT_PATCH) | patch -d $(STLPORT_DIR) -p1 + touch -c $(STLPORT_DIR)/.configured -$(STLPORT_DIR)/lib/libstdc++.so.4.5: $(STLPORT_DIR)/Makefile +$(STLPORT_DIR)/lib/libstdc++.so.4.5: $(STLPORT_DIR)/.configured $(MAKE) ARCH=$(ARCH) PREFIX=$(STAGING_DIR) -C $(STLPORT_DIR) $(STAGING_DIR)/lib/libstdc++.so.4.5: $(STLPORT_DIR)/lib/libstdc++.so.4.5 |