Update of /cvsroot/numexp/gnumexp/src/xygraph
In directory usw-pr-cvs1:/tmp/cvs-serv16432
Modified Files:
Makefile.am
Log Message:
After generating numexp-xygraph from numexp-xygraph.in, also make it executable.
Index: Makefile.am
===================================================================
RCS file: /cvsroot/numexp/gnumexp/src/xygraph/Makefile.am,v
retrieving revision 1.5
retrieving revision 1.6
diff -U4 -r1.5 -r1.6
--- Makefile.am 20 Apr 2002 15:59:23 -0000 1.5
+++ Makefile.am 23 Apr 2002 09:54:28 -0000 1.6
@@ -16,9 +16,11 @@
script_dot_in=numexp-xygraph
$(script_dot_in): $(script_dot_in).in
- sed -e "s|\@prefix\@|$(prefix)|" $< > $@
+ sed -e "s|\@prefix\@|$(prefix)|" $< > $@ && \
+ chmod a+x $@
+
bin_SCRIPTS = numexp-xygraph
CLEANFILES += numexp-xygraph
|