summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMichael R Sweet <michael.r.sweet@gmail.com>1999-03-25 16:09:54 +0000
committerMichael R Sweet <michael.r.sweet@gmail.com>1999-03-25 16:09:54 +0000
commitedab1ef05572ad2b316957876f59858a49aadf51 (patch)
treefbee154200a4e4f32629b0c37d93edd04a1b891e /src
parent18aeef78c6af2bc58107a894228ef489c18c5107 (diff)
Can't use chmod -R on header directory...
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.0@463 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'src')
-rw-r--r--src/Makefile7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/Makefile b/src/Makefile
index 0b650fc48..3a86dc97e 100644
--- a/src/Makefile
+++ b/src/Makefile
@@ -1,5 +1,5 @@
#
-# "$Id: Makefile,v 1.18.2.2 1999/03/25 15:47:11 mike Exp $"
+# "$Id: Makefile,v 1.18.2.3 1999/03/25 16:09:54 mike Exp $"
#
# Library makefile for the Fast Light Tool Kit (FLTK).
#
@@ -200,7 +200,8 @@ install: ../lib/$(LIBNAME) $(DSONAME)
@-mkdir -p $(includedir)
@rm -rf $(includedir)/FL $(includedir)/Fl
@-cp -r ../FL $(includedir)
- @-chmod -R 644 $(includedir)/FL
+ @-chmod 755 $(includedir)/FL
+ @-chmod 644 $(includedir)/FL/*
@for file in $(includedir)/FL/*.H; do\
newfile="`basename $$file H`h";\
ln -s $$file $(includedir)/FL/$$newfile;\
@@ -208,5 +209,5 @@ install: ../lib/$(LIBNAME) $(DSONAME)
@-ln -s FL $(includedir)/Fl
#
-# End of "$Id: Makefile,v 1.18.2.2 1999/03/25 15:47:11 mike Exp $".
+# End of "$Id: Makefile,v 1.18.2.3 1999/03/25 16:09:54 mike Exp $".
#