diff options
author | Yann E. MORIN" <yann.morin.1998@anciens.enib.fr> | 2009-10-30 19:49:51 +0100 |
---|---|---|
committer | Yann E. MORIN" <yann.morin.1998@anciens.enib.fr> | 2009-10-30 19:49:51 +0100 |
commit | 01240b9fbf60510a098975fd8d74b908ec2cde45 (patch) | |
tree | 49bad1c173dbb916e41a46d68d4dd798d953fb52 /scripts/scripts.mk | |
parent | de8f2cea32f14099cf756cbef40d312ffd1894a8 (diff) | |
download | crosstool-ng-01240b9fbf60510a098975fd8d74b908ec2cde45.tar.gz crosstool-ng-01240b9fbf60510a098975fd8d74b908ec2cde45.tar.bz2 crosstool-ng-01240b9fbf60510a098975fd8d74b908ec2cde45.zip |
scripts: fix updating config.{sub,guess}
Diffstat (limited to 'scripts/scripts.mk')
-rw-r--r-- | scripts/scripts.mk | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/scripts/scripts.mk b/scripts/scripts.mk index ebb05e4b..7b215402 100644 --- a/scripts/scripts.mk +++ b/scripts/scripts.mk @@ -35,14 +35,12 @@ PHONY += scripts scripts: $(SILENT)mkdir -p scripts -FROCE += $(CONFIG_SUB_DEST) -$(CONFIG_SUB_DEST): scripts +$(CONFIG_SUB_DEST): scripts FORCE @$(ECHO) ' WGET $@' $(SILENT)wget $(wget_opt) -O $@ $(CONFIG_SUB_SRC) $(SILENT)chmod u+rwx,go+rx-w $@ -FORCE += $(CONFIG_GUESS_DEST) -$(CONFIG_GUESS_DEST): scripts +$(CONFIG_GUESS_DEST): scripts FORCE @$(ECHO) ' WGET $@' $(SILENT)wget $(wget_opt) -O $@ $(CONFIG_GUESS_SRC) $(SILENT)chmod u+rwx,go+rx-w $@ |