diff options
author | Guillem Jover <guillem@debian.org> | 2016-10-09 17:37:23 +0200 |
---|---|---|
committer | Guillem Jover <guillem@debian.org> | 2016-10-29 16:02:51 +0200 |
commit | 618fdf4242eae14949d0896e98dce20d3f2a0ceb (patch) | |
tree | afb880ae07704b1c1d91943e942f94df11b6c411 /scripts/mk/Makefile.am | |
parent | 734dfd60d4cc60b3ed30bb242cf200e493cf7625 (diff) | |
download | dpkg-618fdf4242eae14949d0896e98dce20d3f2a0ceb.tar.gz |
build: Use two space indentation for shell code
Diffstat (limited to 'scripts/mk/Makefile.am')
-rw-r--r-- | scripts/mk/Makefile.am | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/scripts/mk/Makefile.am b/scripts/mk/Makefile.am index 0e1230efb..4b92b7847 100644 --- a/scripts/mk/Makefile.am +++ b/scripts/mk/Makefile.am @@ -7,12 +7,12 @@ dist_pkgdata_DATA = \ pkg-info.mk \ vendor.mk -do_path_subst = $(AM_V_GEN) \ - sed -e "s:dpkg_datadir[[:space:]]*=[[:space:]]*[^[:space:]]*:dpkg_datadir = $(pkgdatadir):" +do_path_subst = $(AM_V_GEN) sed \ + -e "s:dpkg_datadir[[:space:]]*=[[:space:]]*[^[:space:]]*:dpkg_datadir = $(pkgdatadir):" install-data-hook: mv $(DESTDIR)$(pkgdatadir)/default.mk \ $(DESTDIR)$(pkgdatadir)/default.mk.tmp $(do_path_subst) <$(DESTDIR)$(pkgdatadir)/default.mk.tmp \ - >$(DESTDIR)$(pkgdatadir)/default.mk + >$(DESTDIR)$(pkgdatadir)/default.mk rm -f $(DESTDIR)$(pkgdatadir)/default.mk.tmp |