Skip to content
Snippets Groups Projects
Commit 613cea32 authored by Mirar (Pontus Hagland)'s avatar Mirar (Pontus Hagland)
Browse files

bugfix (don't complain about now_in_share stuff if share and lib are the same)

Rev: src/Makefile.in:1.77
parent e32f110b
Branches
Tags
No related merge requests found
#
# $Id: Makefile.in,v 1.76 1998/04/17 21:15:02 mirar Exp $
# $Id: Makefile.in,v 1.77 1998/04/17 21:53:21 mirar Exp $
#
# This line is needed on some machines.
......@@ -255,8 +255,10 @@ install:
mv -f "$(share_prefix)/$$f" "$(share_prefix)/$$f.old"; \
else : ; fi; \
if [ -f "$(lib_prefix)/$$f" ]; then \
if test "x$(lib_prefix)" != "x$(share_prefix)"; then \
mv -f "$(lib_prefix)/$$f" "$(lib_prefix)/$$f.now_in_share.old"; \
else : ; fi; \
else : ; fi; \
cp "$(LIBDIR_SRC)/$$f" "$(share_prefix)/$$f" || exit 1; \
chmod a+r "$(share_prefix)/$$f"; \
chmod u+w "$(share_prefix)/$$f"; \
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment