summaryrefslogtreecommitdiff
path: root/fluid
diff options
context:
space:
mode:
authorMichael R Sweet <michael.r.sweet@gmail.com>1999-02-19 13:10:20 +0000
committerMichael R Sweet <michael.r.sweet@gmail.com>1999-02-19 13:10:20 +0000
commitae5a281a39f695e8eb1daaff60aa9e095d6a5ee6 (patch)
tree69a67cd8ce116f8ea768217278c0c455456f1009 /fluid
parent8136dfe6b5f0d1c288d36f496aaa11aa09c31177 (diff)
Updated install rules to install files with write permission for the
owner. This isn't necessary for root installs, but is for user-level installs. git-svn-id: file:///fltk/svn/fltk/trunk@298 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'fluid')
-rw-r--r--fluid/Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/fluid/Makefile b/fluid/Makefile
index ad94d8aeb..af5520c3e 100644
--- a/fluid/Makefile
+++ b/fluid/Makefile
@@ -1,5 +1,5 @@
#
-# "$Id: Makefile,v 1.8 1999/01/31 07:43:14 bill Exp $"
+# "$Id: Makefile,v 1.9 1999/02/19 13:10:20 mike Exp $"
#
# Fluid makefile for the Fast Light Tool Kit (FLTK).
#
@@ -73,7 +73,7 @@ install: $(PROGRAM)
strip $(PROGRAM)
-mkdir -p $(bindir)
cp $(PROGRAM) $(bindir)/$(PROGRAM)
- @chmod a+rx,g-w,o-w $(bindir)/$(PROGRAM)
+ @chmod a+rx,u+w,g-w,o-w $(bindir)/$(PROGRAM)
uninstall:
-@ rm -f $(bindir)/$(PROGRAM)
@@ -90,5 +90,5 @@ rebuild:
./fluid -c widget_panel.fl
#
-# End of "$Id: Makefile,v 1.8 1999/01/31 07:43:14 bill Exp $".
+# End of "$Id: Makefile,v 1.9 1999/02/19 13:10:20 mike Exp $".
#