summaryrefslogtreecommitdiff
path: root/misc/rpm/patches/patch-ac
diff options
context:
space:
mode:
Diffstat (limited to 'misc/rpm/patches/patch-ac')
-rw-r--r--misc/rpm/patches/patch-ac21
1 files changed, 21 insertions, 0 deletions
diff --git a/misc/rpm/patches/patch-ac b/misc/rpm/patches/patch-ac
new file mode 100644
index 00000000000..71db9e0a40c
--- /dev/null
+++ b/misc/rpm/patches/patch-ac
@@ -0,0 +1,21 @@
+--- misc/Makefile.in.orig Wed May 27 16:49:41 1998
++++ misc/Makefile.in Wed Jul 29 12:46:56 1998
+@@ -2,7 +2,7 @@
+ top_srcdir = @top_srcdir@
+ VPATH = @srcdir@
+
+-include ../Makefile.inc
++.include "../Makefile.inc"
+
+ LIBOBJECTS = @MISCOBJS@
+ LIBMISC = libmisc.a
+@@ -32,6 +32,6 @@
+ $(CPP) $(CFLAGS) -MM $(srcdir)/*.c | \
+ sed s+$$topdir_path+$(top_srcdir)+g > .depend
+
+-ifeq (.depend,$(wildcard .depend))
+-include .depend
+-endif
++.if exists(.depend)
++.include ".depend"
++.endif