pike.git/
src/
Makefile.in
Branch:
Tag:
Non-build tags
All tags
No tags
2000-03-26
2000-03-26 15:12:38 by Henrik Grubbström (Grubba) <grubba@grubba.org>
86ab5bc1ddc75a579174cd2636ce698aa475892b (
11
lines) (+
8
/-
3
)
[
Show
|
Annotate
]
Branch:
7.9
Fixed bug in creation of ./share symlink.
(Is it even used currently?)
Rev: src/Makefile.in:1.182
1:
#
-
# $Id: Makefile.in,v 1.
181
2000/03/
22
00
:
55
:
36
hubbe
Exp $
+
# $Id: Makefile.in,v 1.
182
2000/03/
26
15
:
12
:
38
grubba
Exp $
# # This line is needed on some machines.
389:
done @if [ -d share/. ]; then : ; else \ echo "Creating symlink ./share"; \
-
if [ "x`ls share 2>&1 || :`" = "x" ]; then \
+
if [ "x`ls share 2>&1 || :`" = "x" ]; then
:; else
\
+
if [ "x`ls share.old 2>&1 || :`" = "x" ]; then :; else \
+
echo "Deleting share.old"; \
+
$(RM) share.old; \
+
fi; \
echo "Renaming share to share.old"; \ mv share share.old || exit 1; \
-
else : ;
fi; \
+
fi; \
ln -s "$(LIBDIR_SRC)" ./share || exit 1; \ fi @echo "Done."