summaryrefslogtreecommitdiff
path: root/dist-check.mk
diff options
context:
space:
mode:
authorJoel Granados Moreno <jgranado@redhat.com>2009-06-10 19:05:55 +0200
committerJim Meyering <meyering@redhat.com>2009-06-10 20:38:41 +0200
commit34386567878a879bbf24d53e262581289b2d0a21 (patch)
treea1ae5ccf3665e1b9a6e6402fd970084b6c68f1ac /dist-check.mk
parent1e0e6fcc28cfec5cfb9ad60f2c2bc79c3ec3a663 (diff)
downloadparted-34386567878a879bbf24d53e262581289b2d0a21.tar.gz
Tweak distcheck.
* dist-check.mk (install-transform-check): The binaries will be located in /sbin instead of /bin.
Diffstat (limited to 'dist-check.mk')
-rw-r--r--dist-check.mk2
1 files changed, 1 insertions, 1 deletions
diff --git a/dist-check.mk b/dist-check.mk
index 16f3859..40e909c 100644
--- a/dist-check.mk
+++ b/dist-check.mk
@@ -46,7 +46,7 @@ define install-transform-check
&& rm -rf $(pfx) \
&& $(MAKE) program_transform_name='s/.*/zyx/' \
prefix=$(pfx) install \
- && test "$$(echo $(pfx)/bin/*)" = "$(pfx)/bin/zyx" \
+ && test "$$(echo $(pfx)/sbin/*)" = "$(pfx)/sbin/zyx" \
&& test "$$(find $(pfx)/share/man -type f|sed 's,.*/,,;s,\..*,,')" = "zyx"
endef