blob: 3a8bc29af3326f3801a1485747a18889e4bed81a (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
--- Make/instrules.orig Thu Dec 8 22:28:18 2005
+++ Make/instrules Mon Sep 25 19:17:55 2006
@@ -28,13 +28,13 @@
__inst_headers:
@[ -d $(INST_INCLUDE)/OpenThreads ] || mkdir -p $(INST_INCLUDE)/OpenThreads
- for f in include/OpenThreads/* ; do\
- if [ ! -d $$f ];\
- then\
+ for f in include/OpenThreads/* ; do \
+ if [ ! -d $$f ]; \
+ then \
[ "`head -1 $$f | cut -c 1-12`" = "/* -*-c++-*-" ] && \
echo $(INSTRCMD) $$f $(INST_INCLUDE)/OpenThreads; \
$(INSTRCMD) $$f $(INST_INCLUDE)/OpenThreads; \
- fi;\
+ fi; \
done
|