diff options
author | Igor Pashev <pashev.igor@gmail.com> | 2017-10-13 11:18:03 +0300 |
---|---|---|
committer | Igor Pashev <pashev.igor@gmail.com> | 2017-10-13 11:18:03 +0300 |
commit | 26b6c8d1ed226b573db3a10be30ab6e35f779a7c (patch) | |
tree | 4af4cf2c19ee740fb3368cc935fb5173b5de673c | |
parent | db3b02609b1145abf3ad6756a0a26d8e0690560d (diff) | |
download | util-linux-old-26b6c8d1ed226b573db3a10be30ab6e35f779a7c.tar.gz |
Create missed directories
-rwxr-xr-x | debian/rules | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/debian/rules b/debian/rules index 70e424dd..256e1d00 100755 --- a/debian/rules +++ b/debian/rules @@ -154,7 +154,7 @@ endif cd debian; if [ -f util-linux/sbin/fdisk ]; then \ ln util-linux/sbin/*fdisk fdisk-udeb/usr/sbin/; \ S=fdisk-udeb/usr/sbin/cfdisk; if [ -f $$S ]; then mv $$S cfdisk-udeb/usr/sbin/; fi; \ - cd util-linux-locales && find usr/share/locale -type f | while read x; do ln $$x ../cfdisk-udeb/$$x; done \ + cd util-linux-locales && find usr/share/locale -type f | while read x; do mkdir -p `dirname ../cfdisk-udeb/$$x`; ln $$x ../cfdisk-udeb/$$x; done \ fi ifeq ($(DEB_HOST_ARCH_OS),linux) install -m 644 debian/mount.fstab debian/mount/usr/share/doc/mount/examples/fstab |