diff options
author | Anthony G. Basile <blueness@gentoo.org> | 2011-10-08 14:12:56 -0400 |
---|---|---|
committer | Anthony G. Basile <blueness@gentoo.org> | 2011-10-08 14:12:56 -0400 |
commit | 0a18a5e10b503a003ab076848ade2d94347b6e40 (patch) | |
tree | f9686819f4b1bdd445dfaad0c06253f6e6b0cb4d | |
parent | scripts/revdep-pax: completed four command line options (diff) | |
download | elfix-0a18a5e10b503a003ab076848ade2d94347b6e40.tar.gz elfix-0a18a5e10b503a003ab076848ade2d94347b6e40.tar.bz2 elfix-0a18a5e10b503a003ab076848ade2d94347b6e40.zip |
{scripts,src}/Makefile.am: install all utilities into /sbin
-rw-r--r-- | Makefile.am | 2 | ||||
-rw-r--r-- | configure.ac | 1 | ||||
-rw-r--r-- | scripts/Makefile.am | 1 | ||||
-rw-r--r-- | src/Makefile.am | 2 |
4 files changed, 4 insertions, 2 deletions
diff --git a/Makefile.am b/Makefile.am index fbec9a2..f092f0d 100644 --- a/Makefile.am +++ b/Makefile.am @@ -4,4 +4,4 @@ endif if POC SUBDIRS_POC = poc endif -SUBDIRS = src doc $(SUBDIRS_TESTS) $(SUBDIRS_POC) +SUBDIRS = src scripts doc $(SUBDIRS_TESTS) $(SUBDIRS_POC) diff --git a/configure.ac b/configure.ac index bc6e0f6..b9731b0 100644 --- a/configure.ac +++ b/configure.ac @@ -64,6 +64,7 @@ AC_FUNC_ERROR_AT_LINE AC_CONFIG_FILES([Makefile src/Makefile + scripts/Makefile doc/Makefile poc/Makefile tests/Makefile]) diff --git a/scripts/Makefile.am b/scripts/Makefile.am new file mode 100644 index 0000000..9faaeac --- /dev/null +++ b/scripts/Makefile.am @@ -0,0 +1 @@ +sbin_SCRIPTS = revdep-pax diff --git a/src/Makefile.am b/src/Makefile.am index 8e4709c..cc46fe2 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -1,4 +1,4 @@ -bin_PROGRAMS = fix-gnustack paxctl-ng +sbin_PROGRAMS = fix-gnustack paxctl-ng fix_gnustack_SOURCES = fix-gnustack.c fix_gnustack_LDADD = -lelf paxctl_ng_SOURCES = paxctl-ng.c |