diff options
author | Clayton Shotwell <clshotwe@rockwellcollins.com> | 2014-12-15 21:53:55 -0600 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2015-01-01 21:11:46 +0100 |
commit | 77872678accd4d98cd3aa3d95a34738861844e31 (patch) | |
tree | fcd7bb7d5a63af8744edcbbe6a6f3ebb9bd02dd4 /package/libsemanage/0001-execption-lib-path-fix.patch | |
parent | 5cefca4cc3da4fc5e6649aa3ae3a828df3d09a44 (diff) | |
download | buildroot-77872678accd4d98cd3aa3d95a34738861844e31.tar.gz buildroot-77872678accd4d98cd3aa3d95a34738861844e31.zip |
libsemanage: new package
Signed-off-by: Clayton Shotwell <clshotwe@rockwellcollins.com>
Signed-off-by: Matt Weber <matthew.weber@rockwellcollins.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Diffstat (limited to 'package/libsemanage/0001-execption-lib-path-fix.patch')
-rw-r--r-- | package/libsemanage/0001-execption-lib-path-fix.patch | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/package/libsemanage/0001-execption-lib-path-fix.patch b/package/libsemanage/0001-execption-lib-path-fix.patch new file mode 100644 index 0000000000..cbcbea5995 --- /dev/null +++ b/package/libsemanage/0001-execption-lib-path-fix.patch @@ -0,0 +1,14 @@ +Patch to correct a missing header file issue. + +Signed-off-by Clayton Shotwell <clshotwe@rockwellcollins.com> + +--- a/src/exception.sh 2011-12-21 11:46:04.000000000 -0600 ++++ b/src/exception.sh 2012-08-27 11:29:58.000000000 -0500 +@@ -9,6 +9,6 @@ + } + " + } +-gcc -x c -c - -aux-info temp.aux < ../include/semanage/semanage.h ++gcc -x c -c - -aux-info temp.aux -I../include < ../include/semanage/semanage.h + for i in `awk '/extern int/ { print $6 }' temp.aux`; do except $i ; done + rm -f -- temp.aux -.o |