Revert handling of space in filenames.

This commit is contained in:
Arne Fitzenreiter
2009-04-15 03:52:28 +02:00
parent c9444dcf3b
commit e95065b3e0

View File

@@ -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); \