diff options
author | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2017-04-18 01:25:00 +0200 |
---|---|---|
committer | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2017-04-24 03:47:29 +0200 |
commit | 37efbbd8211bd40e2d1f1732e27bd7d3ca504a12 (patch) | |
tree | 2f445eca4ba6baa5bb3f41b1af4f3680b6ddae17 /hwdb/meson.build | |
parent | meson: use efi-includedir to look for header (diff) | |
download | systemd-37efbbd8211bd40e2d1f1732e27bd7d3ca504a12.tar.xz systemd-37efbbd8211bd40e2d1f1732e27bd7d3ca504a12.zip |
meson: reindent all files with 8 spaces
The indentation for emacs'es meson-mode is added .dir-locals.
All files are reindented automatically, using the lasest meson-mode from git.
Indentation should now be fairly consistent.
Diffstat (limited to 'hwdb/meson.build')
-rw-r--r-- | hwdb/meson.build | 54 |
1 files changed, 26 insertions, 28 deletions
diff --git a/hwdb/meson.build b/hwdb/meson.build index 1e859fd20d..b9fc5ab594 100644 --- a/hwdb/meson.build +++ b/hwdb/meson.build @@ -1,39 +1,37 @@ -# -*- mode: meson -*- - hwdb_files = files(''' - 20-pci-vendor-model.hwdb - 20-pci-classes.hwdb - 20-usb-vendor-model.hwdb - 20-usb-classes.hwdb - 20-sdio-vendor-model.hwdb - 20-sdio-classes.hwdb - 20-bluetooth-vendor-product.hwdb - 20-acpi-vendor.hwdb - 20-OUI.hwdb - 20-net-ifname.hwdb - 60-evdev.hwdb - 60-keyboard.hwdb - 60-sensor.hwdb - 70-mouse.hwdb - 70-pointingstick.hwdb - 70-touchpad.hwdb + 20-pci-vendor-model.hwdb + 20-pci-classes.hwdb + 20-usb-vendor-model.hwdb + 20-usb-classes.hwdb + 20-sdio-vendor-model.hwdb + 20-sdio-classes.hwdb + 20-bluetooth-vendor-product.hwdb + 20-acpi-vendor.hwdb + 20-OUI.hwdb + 20-net-ifname.hwdb + 60-evdev.hwdb + 60-keyboard.hwdb + 60-sensor.hwdb + 70-mouse.hwdb + 70-pointingstick.hwdb + 70-touchpad.hwdb '''.split()) if conf.get('ENABLE_HWDB', 0) == 1 - install_data(hwdb_files, - install_dir : udevhwdbdir) + install_data(hwdb_files, + install_dir : udevhwdbdir) - meson.add_install_script('sh', '-c', - mkdir_p.format(join_paths(sysconfdir, 'udev/hwdb.d'))) + meson.add_install_script('sh', '-c', + mkdir_p.format(join_paths(sysconfdir, 'udev/hwdb.d'))) - meson.add_install_script('sh', '-c', - 'test -n "$DESTDIR" || @0@/systemd-hwdb update' - .format(rootbindir)) + meson.add_install_script('sh', '-c', + 'test -n "$DESTDIR" || @0@/systemd-hwdb update' + .format(rootbindir)) endif ############################################################ custom_target( - 'update', - output : 'update', - command : [hwdb_update_sh, meson.current_source_dir()]) + 'update', + output : 'update', + command : [hwdb_update_sh, meson.current_source_dir()]) |