diff options
| author | Brian C. Lane <bcl@redhat.com> | 2012-05-08 11:51:29 -0700 |
|---|---|---|
| committer | Brian C. Lane <bcl@redhat.com> | 2012-05-09 08:19:31 -0700 |
| commit | b44d7c8480361dcba8d0cb27e92302fbb97e0d89 (patch) | |
| tree | a8c5d6410e68b0fc5bc8345a5404c7c397a2a806 /scripts | |
| parent | 90ca3239bac21abca989d580c1dd1aa089cfc0d5 (diff) | |
| download | anaconda-b44d7c8480361dcba8d0cb27e92302fbb97e0d89.tar.gz anaconda-b44d7c8480361dcba8d0cb27e92302fbb97e0d89.tar.xz anaconda-b44d7c8480361dcba8d0cb27e92302fbb97e0d89.zip | |
makeupdates: ignore most of data directory
Only a few specific items in data need to be updated.
Diffstat (limited to 'scripts')
| -rwxr-xr-x | scripts/makeupdates | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/scripts/makeupdates b/scripts/makeupdates index cf8194075..b8f2e1d58 100755 --- a/scripts/makeupdates +++ b/scripts/makeupdates @@ -148,12 +148,16 @@ def copyUpdatedFiles(tag, updates, cwd): install_to_dir(file, "lib/systemd/system-generators") elif file == "data/liveinst/liveinst": install_to_dir(file, "usr/sbin") + elif file == "data/70-anaconda.rules": + install_to_dir(file, "lib/udev/rules.d") + elif file.startswith("data/ui/"): + install_to_dir(file, "usr/share/anaconda/ui") elif file.find('/') != -1: fields = file.split('/') subdir = fields[0] if subdir in ['po', 'scripts','command-stubs', 'tests', 'bootdisk', 'docs', 'fonts', 'utils', 'gptsync', - 'liveinst', 'dracut']: + 'liveinst', 'dracut', 'data']: continue else: sys.stdout.write("Including %s\n" % (file,)) |
