diff options
author | Richard Narron <richard@aaazen.com> | 2015-02-01 00:23:37 +0700 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2015-02-01 00:23:37 +0700 |
commit | dc81844ff9d70d514ed1eb7620e06203ca4ca6ee (patch) | |
tree | 96726fee968f51efa393f3205806a9a4d61c8968 /system/zarfy/patch-src-makefile-in | |
parent | 7c7af4dc156231b6e1b16f49f28a2be8d4ae3089 (diff) |
system/zarfy: Fix build outside /tmp/SBo.
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'system/zarfy/patch-src-makefile-in')
-rw-r--r-- | system/zarfy/patch-src-makefile-in | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/system/zarfy/patch-src-makefile-in b/system/zarfy/patch-src-makefile-in new file mode 100644 index 000000000000..8d7410013872 --- /dev/null +++ b/system/zarfy/patch-src-makefile-in @@ -0,0 +1,11 @@ +--- src/Makefile.in.orig 2008-09-13 06:05:07.000000000 -0700 ++++ src/Makefile.in 2015-01-26 08:28:52.276310733 -0800 +@@ -200,7 +200,7 @@ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + install-binPROGRAMS: $(bin_PROGRAMS) + @$(NORMAL_INSTALL) +- test -z "$(bindir)" || $(MKDIR_P) "$(DESTDIR)$(bindir)" ++ test -z "$(DESTDIR)$(bindir)" || $(MKDIR_P) "$(DESTDIR)$(bindir)" + @list='$(bin_PROGRAMS)'; for p in $$list; do \ + p1=`echo $$p|sed 's/$(EXEEXT)$$//'`; \ + if test -f $$p \ |