* Possible bug in src/Makefile.am
@ 2013-07-07 5:15 Mark Kirkwood
2013-07-08 6:51 ` Mark Kirkwood
0 siblings, 1 reply; 2+ messages in thread
From: Mark Kirkwood @ 2013-07-07 5:15 UTC (permalink / raw)
To: Ceph Development
[-- Attachment #1: Type: text/plain, Size: 359 bytes --]
I noticed when building with prefix=/usr/local that the install step
produced an usr/local/sbin hierarchy *under* /usr/local (i.e
/usr/local/usr/local/sbin) with ceph_disk and friends (i.e
ceph_sbin_SCRIPTS) therein. I am guessing that these should actually be
installed in /usr/local/sbin (i.e prefix/sbin).
The attached patch does this.
Regards
Mark
[-- Attachment #2: src-Makefile.am.patch --]
[-- Type: text/x-patch, Size: 380 bytes --]
diff --git a/src/Makefile.am b/src/Makefile.am
index c1a7e80..21f30dd 100644
--- a/src/Makefile.am
+++ b/src/Makefile.am
@@ -28,7 +28,7 @@ bin_PROGRAMS =
bin_DEBUGPROGRAMS =
sbin_PROGRAMS =
# like sbin_SCRIPTS but can be used to install to e.g. /usr/sbin
-ceph_sbindir = $(prefix)$(sbindir)
+ceph_sbindir = $(sbindir)
ceph_sbin_SCRIPTS = \
ceph-disk \
ceph-disk-prepare \
^ permalink raw reply related [flat|nested] 2+ messages in thread
end of thread, other threads:[~2013-07-08 6:51 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-07-07 5:15 Possible bug in src/Makefile.am Mark Kirkwood
2013-07-08 6:51 ` Mark Kirkwood
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.