source: rtems/aclocal/rpm.m4 @ e4669c7

Last change on this file since e4669c7 was e4669c7, checked in by cvs2git <rtems-devel@…>, on 02/09/04 at 13:21:25

This commit was manufactured by cvs2svn to create branch 'rtems-4-6-branch'.

Cherrypick from master 2004-02-01 08:27:24 UTC Ralf Corsepius <ralf.corsepius@…> '2004-02-01 Ralf Corsepius <corsepiu@…>':

aclocal/rpm.m4

Cherrypick from master 2004-02-09 13:21:24 UTC Ralf Corsepius <ralf.corsepius@…> '2004-02-09 Ralf Corsepius <corsepiu@…>':

scripts/rtems/rtems-source.add

  • Property mode set to 100644
File size: 566 bytes
Line 
1AC_DEFUN([RTEMS_ENABLE_RPMPREFIX],[
2AC_ARG_ENABLE([rpmprefix],
3[  --enable-rpmprefix=<rpmprefix>      prefix rpms],
4[case $enable_rpmprefix in
5yes ) rpmprefix="rtems-"]RTEMS_API["-";;
6no ) rpmprefix="%{nil}";;
7* ) AS_IF([test -z "$enable_rpmprefix"],
8      [rpmprefix="%{nil}"],
9      [rpmprefix="$enable_rpmprefix"]);;
10esac],
11[rpmprefix="rtems-"]RTEMS_API["-"])
12
13AC_ARG_ENABLE([osversions],
14[  --enable-osversions       whether to use version numbers in os-tripples],
15[case $enable_osversions in
16yes ) osversion=RTEMS_API;;
17* ) osversion=;;
18esac],
19[osversion=])
20])
Note: See TracBrowser for help on using the repository browser.