diff options
author | Luke Shumaker <LukeShu@sbcglobal.net> | 2009-07-28 15:50:27 -0400 |
---|---|---|
committer | Luke Shumaker <lukeshu@sbcglobal.net> | 2015-06-26 00:30:13 -0600 |
commit | 7f78b595ce3baf3ade82e546a3ed7cfba41c8ef9 (patch) | |
tree | 82319fb46f670457e29f2082a819d24c528c6e4e | |
parent | 9cc5fe6c84622c1c67566b03152ef55ccce2e4db (diff) |
use the Makefile.in name used by the GNU build system
-rw-r--r-- | Makefile.in (renamed from Makefile.orig) | 0 | ||||
-rwxr-xr-x | configure | 4 | ||||
-rw-r--r-- | plugins/repo/Makefile.in (renamed from plugins/repo/Makefile.orig) | 2 | ||||
-rw-r--r-- | plugins/users/Makefile.in (renamed from plugins/users/Makefile.orig) | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/Makefile.orig b/Makefile.in index 7a3e131..7a3e131 100644 --- a/Makefile.orig +++ b/Makefile.in @@ -65,10 +65,10 @@ for var in $vars; do done echo "11 a# DO NOT edit this file, it has been generated by configure, and will -11 a# be overwritten. Instead, edit the file \`Makefile.orig'" >> var.sed +11 a# be overwritten. Instead, edit the file \`Makefile.in'" >> var.sed Makefiles=`find "${_srcdir}/" -regextype posix-extended \ --regex '(.*/)?Makefile\.orig' -type f` +-regex '(.*/)?Makefile\.in' -type f` for orig in $Makefiles; do new=${orig/%.orig/} diff --git a/plugins/repo/Makefile.orig b/plugins/repo/Makefile.in index ea9e7a9..32a07dd 100644 --- a/plugins/repo/Makefile.orig +++ b/plugins/repo/Makefile.in @@ -35,7 +35,7 @@ all : $(name) .SUFFIXES : # targets ########################################################## -srcFiles = $(filter-out %/Makefile.orig,$(shell find $(mysrcdir)/ -type f)) +srcFiles = $(filter-out %/Makefile.in,$(shell find $(mysrcdir)/ -type f)) shSrcFiles = $(filter %.sh,$(srcFiles)) shOutFiles = $(patsubst $(mysrcdir)/%,%,$(basename $(shSrcFiles))) diff --git a/plugins/users/Makefile.orig b/plugins/users/Makefile.in index edac4f0..5c97ef2 100644 --- a/plugins/users/Makefile.orig +++ b/plugins/users/Makefile.in @@ -35,7 +35,7 @@ all : $(name) .SUFFIXES : # targets ########################################################## -srcFiles = $(filter-out %/Makefile.orig,$(shell find $(mysrcdir)/ -type f)) +srcFiles = $(filter-out %/Makefile.in,$(shell find $(mysrcdir)/ -type f)) shSrcFiles = $(filter %.sh,$(srcFiles)) shOutFiles = $(patsubst $(mysrcdir)/%,%,$(basename $(shSrcFiles))) |