File tree Expand file tree Collapse file tree 6 files changed +20
-3824
lines changed
Expand file tree Collapse file tree 6 files changed +20
-3824
lines changed Original file line number Diff line number Diff line change @@ -11,6 +11,7 @@ Build-Depends:
1111 @MODUTILS_DEPENDS@,
1212 @EXTRA_BUILD@,
1313 autoconf,
14+ automake,
1415 bwidget (>= 1.7),
1516 desktop-file-utils,
1617 gettext,
Original file line number Diff line number Diff line change 33/.tmp_versions
44/Makefile.inc
55/Makefile.modinc
6+ /config.guess
67/config.h
78/config.log
89/config.status
10+ /config.sub
11+ /install-sh
912/objects
1013/depends
1114/autom4te.cache
Original file line number Diff line number Diff line change @@ -3,8 +3,22 @@ rm -rf autom4te.cache
33AUTOGEN_TARGET=${AUTOGEN_TARGET-configure: config.h.in}
44set -e
55case :$AUTOGEN_TARGET : in
6- * :configure:* ) autoconf; touch configure ;;
6+ * :configure:* )
7+ automake_libdir=` automake --print-libdir`
8+ [ -e config.guess ] || cp $automake_libdir /config.guess .
9+ [ -e config.sub ] || cp $automake_libdir /config.sub .
10+ [ -e install-sh ] || cp $automake_libdir /install-sh .
11+ autoconf
12+ # autoconf only updates the timestamp if the output actually changed.
13+ # The target's timestamp must be updated or make is confused
14+ touch configure
15+ ;;
716esac
817case :$AUTOGEN_TARGET : in
9- * :config.h.in:* ) autoheader; touch config.h.in ;;
18+ * :config.h.in:* )
19+ autoheader
20+ # autoheader only updates the timestamp if the output actually changed.
21+ # The target's timestamp must be updated or make is confused
22+ touch config.h.in
23+ ;;
1024esac
You can’t perform that action at this time.
0 commit comments