Skip to content

Commit

Permalink
- Made created Makefile read only to avoid changing them by mistake and
Browse files Browse the repository at this point in the history
  having the changes overwritten.
  • Loading branch information
chris_77 committed Mar 24, 2008
1 parent 510c473 commit 1fdcc0e
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
3 changes: 3 additions & 0 deletions configure
Original file line number Diff line number Diff line change
Expand Up @@ -4159,6 +4159,9 @@ which seems to be undefined. Please make sure it is defined." >&2;}
case $ac_file$ac_mode in
"Makefile":F) chmod a-w Makefile ;;
"src/META":F) chmod a-w src/META ;;
"src/Makefile":F) chmod a-w src/Makefile ;;
"examples/Makefile":F) chmod a-w examples/Makefile ;;
esac
done # for ac_tag
Expand Down
6 changes: 3 additions & 3 deletions configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ AC_SUBST(all_requires)

# Finally create the Makefile and samples
AC_CONFIG_FILES([Makefile],[chmod a-w Makefile])
AC_CONFIG_FILES([src/META])
AC_CONFIG_FILES([src/Makefile])
AC_CONFIG_FILES([examples/Makefile])
AC_CONFIG_FILES([src/META],[chmod a-w src/META])
AC_CONFIG_FILES([src/Makefile],[chmod a-w src/Makefile])
AC_CONFIG_FILES([examples/Makefile],[chmod a-w examples/Makefile])
AC_OUTPUT

0 comments on commit 1fdcc0e

Please sign in to comment.