summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Mair-Keimberger <m.mairkeimberger@gmail.com>2018-05-17 10:22:37 +0200
committerAaron Bauman <bman@gentoo.org>2018-05-18 08:33:09 -0400
commit5e12476667aaf67b3b84fc7a92c221c29e97072f (patch)
tree273d4b1df70d4a2d973a743c5ecde34abd9c49eb
parentapp-admin/puppet: remove unused patch (diff)
downloadgentoo-5e12476667aaf67b3b84fc7a92c221c29e97072f.tar.gz
gentoo-5e12476667aaf67b3b84fc7a92c221c29e97072f.tar.bz2
gentoo-5e12476667aaf67b3b84fc7a92c221c29e97072f.zip
app-arch/unadf: remove unused patch
Closes: https://github.com/gentoo/gentoo/pull/8446
-rw-r--r--app-arch/unadf/files/no.in_path.patch39
1 files changed, 0 insertions, 39 deletions
diff --git a/app-arch/unadf/files/no.in_path.patch b/app-arch/unadf/files/no.in_path.patch
deleted file mode 100644
index 51de8f989fa1..000000000000
--- a/app-arch/unadf/files/no.in_path.patch
+++ /dev/null
@@ -1,39 +0,0 @@
-diff -r -u ../unchanged/Lib/Makefile ./Lib/Makefile
---- ../unchanged/Lib/Makefile 2004-08-26 00:39:58.847605592 +1000
-+++ ./Lib/Makefile 2004-08-26 00:41:12.307438000 +1000
-@@ -41,7 +41,7 @@
- # to define LITT_ENDIAN on little endian machines (intel)
- # checks for sizeof(long)=4, sizeof(short)=2, sizeof(int)=4
- defendian.h: myconf
-- myconf
-+ ./myconf
-
- adf_nativ.o: ${NATIV_DIR}/adf_nativ.c ${NATIV_DIR}/adf_nativ.h
- $(CC) ${CFLAGS} -c ${NATIV_DIR}/adf_nativ.c
-Only in ../unchanged/Lib: Makefile.orig
-Only in ../unchanged/Lib: Makefile.rej
-diff -r -u ../unchanged/Lib/myconf ./Lib/myconf
---- ../unchanged/Lib/myconf 2000-08-19 11:08:08.000000000 +1000
-+++ ./Lib/myconf 2004-08-26 00:41:28.344000072 +1000
-@@ -31,17 +31,17 @@
- gcc myctest.c -o myctest
- rm myctest.c
-
--if [ `myctest |cut -d' ' -f 1` != 4 ]
-+if [ `./myctest |cut -d' ' -f 1` != 4 ]
- then echo "Error : sizeof(long)!=4"
- fi
--if [ `myctest |cut -d' ' -f 2` != 2 ]
-+if [ `./myctest |cut -d' ' -f 2` != 2 ]
- then echo "Error : sizeof(short)!=2"
- fi
--if [ `myctest |cut -d' ' -f 3` != 4 ]
-+if [ `./myctest |cut -d' ' -f 3` != 4 ]
- then echo "Error :sizeof(int)!=4"
- fi
-
--if [ `myctest |cut -d' ' -f 4` = LITTLE ]
-+if [ `./myctest |cut -d' ' -f 4` = LITTLE ]
- then
- echo "#ifndef LITT_ENDIAN" >defendian.h
- echo "#define LITT_ENDIAN 1" >>defendian.h