summaryrefslogtreecommitdiff
path: root/hwdb
diff options
context:
space:
mode:
authorZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>2017-04-17 19:25:00 -0400
committerZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>2017-04-23 21:47:29 -0400
commit37efbbd8211bd40e2d1f1732e27bd7d3ca504a12 (patch)
tree2f445eca4ba6baa5bb3f41b1af4f3680b6ddae17 /hwdb
parent0a76b0e8a2043936b6dd598a7a3f924bd683eec8 (diff)
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')
-rw-r--r--hwdb/meson.build54
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()])