From: Arne Fitzenreiter Date: Wed, 15 Apr 2009 01:52:28 +0000 (+0200) Subject: Revert handling of space in filenames. X-Git-Tag: v2.5-beta1~28 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=e95065b3e097774857fd9c1ba456d282fe6111de;p=people%2Fstevee%2Fipfire-2.x.git Revert handling of space in filenames. --- diff --git a/lfs/Config b/lfs/Config index d6dc30a431..aa8a619f3e 100644 --- a/lfs/Config +++ b/lfs/Config @@ -136,14 +136,12 @@ define POSTBUILD echo "error $$LFS_SCRIPT not found in config/rootfiles"; \ fi; \ sed "s/KVER/$(KVER)/g" $$ROOTFILE > $(TARGET)_rootfile; \ - IFS=`echo`; \ for line in `cat $(TARGET)_diff`; do \ if grep -qG "^#$$line$$" $(TARGET)_rootfile; then echo "#$$line" >> $(TARGET); \ elif grep -qG "^$$line$$" $(TARGET)_rootfile ; then echo "$$line" >> $(TARGET); \ else echo "+$$line" >> $(TARGET); \ fi; \ done; \ - unset IFS; \ rm -f $(TARGET)_rootfile; \ else \ touch $(TARGET); \