mirror of
git://git.gnupg.org/gnupg.git
synced 2024-12-22 10:19:57 +01:00
speedo: Let install also copy the SO's symlinks.
* build-aux/speedo.mk (install-speedo): Also instal the sumlinks for the SOs.
This commit is contained in:
parent
7c4c35f542
commit
ff6cffab92
8
README
8
README
@ -97,9 +97,13 @@
|
|||||||
example:
|
example:
|
||||||
|
|
||||||
make -f build-aux/speedo.mk install SYSROOT=/usr/local/gnupg26
|
make -f build-aux/speedo.mk install SYSROOT=/usr/local/gnupg26
|
||||||
ldconfig -n /usr/local/gnupg26/lib
|
|
||||||
|
|
||||||
and adding /usr/local/gnupg26/bin to PATH.
|
and run the binaries like
|
||||||
|
|
||||||
|
/usr/local/gnupg26/bin/gpg
|
||||||
|
|
||||||
|
which will also start any daemon from the same directory. Make sure
|
||||||
|
to stop already running daemons or use a different GNUPGHOME.
|
||||||
|
|
||||||
|
|
||||||
** Specific build problems on some machines:
|
** Specific build problems on some machines:
|
||||||
|
@ -1110,9 +1110,8 @@ ifneq ($(TARGETOS),w32)
|
|||||||
echo "speedo: /*" ;\
|
echo "speedo: /*" ;\
|
||||||
echo "speedo: * Now copy $(idir)/ to the final location and" ;\
|
echo "speedo: * Now copy $(idir)/ to the final location and" ;\
|
||||||
echo "speedo: * adjust $(idir)/bin/gpgconf.ctl accordingly" ;\
|
echo "speedo: * adjust $(idir)/bin/gpgconf.ctl accordingly" ;\
|
||||||
echo "speedo: * Or run:" ;\
|
echo "speedo: * Or run run for example:" ;\
|
||||||
echo "speedo: * make -f $(topsrc)/build-aux/speedo.mk install SYSROOT=/usr/local/gnupg26" ;\
|
echo "speedo: * make -f $(topsrc)/build-aux/speedo.mk install SYSROOT=/usr/local/gnupg26" ;\
|
||||||
echo "speedo: * ldconfig -n /usr/local/gnupg26/lib";\
|
|
||||||
echo "speedo: */")
|
echo "speedo: */")
|
||||||
endif
|
endif
|
||||||
|
|
||||||
@ -1128,7 +1127,6 @@ ifneq ($(TARGETOS),w32)
|
|||||||
echo "speedo: Set SYSROOT to the desired install directory";\
|
echo "speedo: Set SYSROOT to the desired install directory";\
|
||||||
echo "speedo: Example:";\
|
echo "speedo: Example:";\
|
||||||
echo "speedo: make -f $(topsrc)/build-aux/speedo.mk install SYSROOT=/usr/local/gnupg26";\
|
echo "speedo: make -f $(topsrc)/build-aux/speedo.mk install SYSROOT=/usr/local/gnupg26";\
|
||||||
echo "speedo: ldconfig -n /usr/local/gnupg26/lib";\
|
|
||||||
exit 1;\
|
exit 1;\
|
||||||
fi;\
|
fi;\
|
||||||
if [ ! -d "$$SYSROOT"/bin ]; then if ! mkdir "$$SYSROOT"/bin; then \
|
if [ ! -d "$$SYSROOT"/bin ]; then if ! mkdir "$$SYSROOT"/bin; then \
|
||||||
@ -1150,6 +1148,8 @@ ifneq ($(TARGETOS),w32)
|
|||||||
echo "speedo: Installing files to $$SYSROOT";\
|
echo "speedo: Installing files to $$SYSROOT";\
|
||||||
find . -type f -executable \
|
find . -type f -executable \
|
||||||
-exec install -Dm 755 "{}" "$$SYSROOT/{}" \; ;\
|
-exec install -Dm 755 "{}" "$$SYSROOT/{}" \; ;\
|
||||||
|
find . -type l -executable \
|
||||||
|
-exec install -Dm 755 "{}" "$$SYSROOT/{}" \; ;\
|
||||||
find . -type f \! -executable \
|
find . -type f \! -executable \
|
||||||
-exec install -Dm 644 "{}" "$$SYSROOT/{}" \; ;\
|
-exec install -Dm 644 "{}" "$$SYSROOT/{}" \; ;\
|
||||||
echo "sysconfdir = /etc/gnupg" > "$$SYSROOT"/bin/gpgconf.ctl ;\
|
echo "sysconfdir = /etc/gnupg" > "$$SYSROOT"/bin/gpgconf.ctl ;\
|
||||||
|
Loading…
x
Reference in New Issue
Block a user