diff options
Diffstat (limited to 'archivers/nulib2/patches/patch-ac')
-rw-r--r-- | archivers/nulib2/patches/patch-ac | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/archivers/nulib2/patches/patch-ac b/archivers/nulib2/patches/patch-ac new file mode 100644 index 00000000000..dadafff4f1b --- /dev/null +++ b/archivers/nulib2/patches/patch-ac @@ -0,0 +1,26 @@ +$NetBSD: patch-ac,v 1.2 2002/08/25 21:49:19 jlam Exp $ + +--- ../nufxlib-101/Makefile.in.orig Mon May 22 20:15:37 2000 ++++ ../nufxlib-101/Makefile.in +@@ -76,10 +76,10 @@ + + # the build date is approximate, the build flags are accurate + Version.c: Version.c.in Makefile +- (sed -e "s/BUILT/`date`/" -e "s/OPTFLAGS/$(OPT)/" < Version.c.in > Version.c) ++ (sed -e "s|BUILT|`date`|" -e "s|OPTFLAGS|$(OPT)|" < Version.c.in > Version.c) + + clean: +- (cd samples; make clean) ++ (cd samples; ${MAKE} clean) + -rm -f *.o core + -rm -f $(SHARED_PRODUCT) $(STATIC_PRODUCT) + +@@ -89,7 +89,7 @@ + @#ctags *.[ch] + + distclean: clean +- (cd samples; make distclean) ++ (cd samples; ${MAKE} distclean) + -rm -f Version.c + -rm -f Makefile Makefile.bak + -rm -f config.log config.cache config.status config.h |