mirror of
https://git.savannah.gnu.org/git/make.git
synced 2025-02-06 06:26:52 +00:00
Formerly compatMakefile.~64~
This commit is contained in:
parent
b2361b3591
commit
4034f2bdfb
1 changed files with 4 additions and 1 deletions
|
@ -93,7 +93,7 @@ manext = 1
|
||||||
# switch) will not work unless make is installed setgid kmem.
|
# switch) will not work unless make is installed setgid kmem.
|
||||||
install_setgid = @NEED_SETGID@
|
install_setgid = @NEED_SETGID@
|
||||||
# Install make setgid to this group so it can read /dev/kmem.
|
# Install make setgid to this group so it can read /dev/kmem.
|
||||||
group = kmem
|
group = @KMEM_GROUP@
|
||||||
|
|
||||||
# Program to install `make'.
|
# Program to install `make'.
|
||||||
INSTALL_PROGRAM = @INSTALL_PROGRAM@
|
INSTALL_PROGRAM = @INSTALL_PROGRAM@
|
||||||
|
@ -184,6 +184,9 @@ $(bindir)/$(instname): make
|
||||||
-if $(install_setgid); then \
|
-if $(install_setgid); then \
|
||||||
chgrp $(group) $@.new && chmod g+s $@.new; \
|
chgrp $(group) $@.new && chmod g+s $@.new; \
|
||||||
else true; fi
|
else true; fi
|
||||||
|
# Some systems can't deal with renaming onto a running binary.
|
||||||
|
-rm -f $@.old
|
||||||
|
-mv $@ $@.old
|
||||||
mv $@.new $@
|
mv $@.new $@
|
||||||
|
|
||||||
$(infodir)/$(instname).info: make.info
|
$(infodir)/$(instname).info: make.info
|
||||||
|
|
Loading…
Reference in a new issue