summaryrefslogtreecommitdiff
path: root/makeicecat
diff options
context:
space:
mode:
Diffstat (limited to 'makeicecat')
-rwxr-xr-xmakeicecat13
1 files changed, 13 insertions, 0 deletions
diff --git a/makeicecat b/makeicecat
index 4ff3e64..493d946 100755
--- a/makeicecat
+++ b/makeicecat
@@ -87,6 +87,19 @@ for patch in $DATA/patches/*.patch; do
done
shopt -u nullglob
+for file_to_append in $(cd $DATA/files-to-append; find . -type f -print); do
+ echo Appending new data to the end of file: $file_to_append
+ cat $DATA/files-to-append/$file_to_append >> $file_to_append
+done
+
+for dir in l10n/*; do
+ if [[ $dir != l10n/compare-locales ]]; then
+ if [[ ! -e $DATA/files-to-append/$dir/browser/browser/preferences/preferences.ftl ]]; then
+ cat $DATA/files-to-append/browser/locales/en-US/browser/preferences/preferences.ftl >> $dir/browser/browser/preferences/preferences.ftl
+ fi
+ fi
+done
+
cp $DATA/Changelog.IceCat $DATA/README.IceCat .
###############################################################################