mirror of
https://github.com/sudo-project/sudo.git
synced 2025-08-22 09:57:41 +00:00
Use INSTALL_OWNER instead of -O/-G flags so we can work with the
autotools install-sh too. Bug #669
This commit is contained in:
parent
79f4471e41
commit
d7574a344e
@ -266,7 +266,7 @@ install-nls:
|
||||
ln -s $$lang $(DESTDIR)$(localedir)/$$lang$(LOCALEDIR_SUFFIX); \
|
||||
fi; \
|
||||
fi; \
|
||||
$(INSTALL) -O $(install_uid) -G $(install_gid) -m 0644 $$podir/$$lang.mo $(DESTDIR)$(localedir)/$$lang/LC_MESSAGES/$$domain.mo; \
|
||||
$(INSTALL) $(INSTALL_OWNER) -m 0644 $$podir/$$lang.mo $(DESTDIR)$(localedir)/$$lang/LC_MESSAGES/$$domain.mo; \
|
||||
done; \
|
||||
echo ""; \
|
||||
done; \
|
||||
|
@ -27,6 +27,7 @@ cross_compiling = @CROSS_COMPILING@
|
||||
|
||||
# Our install program supports extra flags...
|
||||
INSTALL = $(SHELL) $(top_srcdir)/install-sh -c
|
||||
INSTALL_OWNER = -o $(install_uid) -g $(install_gid)
|
||||
|
||||
# Where to install things...
|
||||
prefix = @prefix@
|
||||
@ -65,7 +66,7 @@ install-binaries:
|
||||
install-doc:
|
||||
|
||||
install-includes: install-dirs
|
||||
$(INSTALL) -O $(install_uid) -G $(install_gid) -m 0644 $(srcdir)/sudo_plugin.h $(DESTDIR)$(includedir)
|
||||
$(INSTALL) $(INSTALL_OWNER) -m 0644 $(srcdir)/sudo_plugin.h $(DESTDIR)$(includedir)
|
||||
|
||||
install-plugin:
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user