facf0c92e0
Red Bear OS is a full fork. All sources must be available from git clone with zero network access. Removed gitignore rules that excluded fetched source trees under recipes/*/source/, local/recipes/kde/*/source/, local/recipes/qt/*/source/, and vendor source trees. Build artifacts (target/, build/, source.tar, *.o, *.so) remain excluded. 127291 files added — kernel, relibc, base, bootloader, pkgar, all KDE/Qt frameworks, mesa, wayland, DRM drivers, and every other recipe source.
27 lines
1.0 KiB
Plaintext
27 lines
1.0 KiB
Plaintext
# fixautomake.m4 serial 8 (gettext-0.18)
|
|
dnl Copyright (C) 2002-2003, 2006, 2009 Free Software Foundation, Inc.
|
|
dnl This file is free software, distributed under the terms of the GNU
|
|
dnl General Public License. As a special exception to the GNU General
|
|
dnl Public License, this file may be distributed as part of a program
|
|
dnl that contains a configuration script generated by Autoconf, under
|
|
dnl the same distribution terms as the rest of that program.
|
|
|
|
dnl From Bruno Haible
|
|
|
|
dnl Fix an automake-1.5-1.11 bug: the distrib rule is omitted.
|
|
AC_DEFUN([FIX_MAKEFILE_DISTRIB], [
|
|
sed -e 's,^#distdir:,distdir:,' < $ac_file > $ac_file.tmp
|
|
mv $ac_file.tmp $ac_file
|
|
])
|
|
|
|
dnl Fix an automake-1.9-1.11 bug: the distrib rule is not extensible.
|
|
dnl Insert a invocation of the distdir1 target inside the distdir commands,
|
|
dnl after $(distdir) has been erased and re-created.
|
|
AC_DEFUN([FIX_MAKEFILE_TOPDIR_DISTRIB], [
|
|
sed_script='/mkdir "*\$(distdir)"*$/{a\
|
|
\ $(MAKE) distdir1
|
|
}'
|
|
sed -e "$sed_script" < $ac_file > $ac_file.tmp
|
|
mv $ac_file.tmp $ac_file
|
|
])
|