]> git.sesse.net Git - vlc/commitdiff
Remove unused prefix stuff from vlc-config
authorRémi Denis-Courmont <remi@remlab.net>
Thu, 18 Aug 2011 16:06:57 +0000 (19:06 +0300)
committerRémi Denis-Courmont <remi@remlab.net>
Thu, 18 Aug 2011 16:06:57 +0000 (19:06 +0300)
vlc-config.in.in

index a32c4b44958fe6b9cafa248a1d44ce28c9131072..be89ce4b7e22054ab403746c4eb26d52e41e2966 100644 (file)
@@ -1,10 +1,5 @@
 #!@SHELL@
 
-prefix="@prefix@"
-exec_prefix="@exec_prefix@"
-exec_prefix_set=no
-datarootdir="@datarootdir@"
-
 optim="@optim@"
 
 cppflags=""
@@ -24,8 +19,6 @@ usage()
         cat << BLAH
 Usage: vlc-config OPTIONS MODULES
 Options:
-        [--prefix[=DIR]]          set prefix
-        [--exec-prefix[=DIR]]     set exec prefix
         [--version]               print version and exit
         [--libs]                  output linking flags
         [--cflags]                output C compilation flags
@@ -97,22 +90,6 @@ while test $# -gt 0; do
   esac
 
   case "$tgt" in
-    --prefix=*)
-      prefix="${optarg}"
-      if test "${exec_prefix_set}" = no ; then
-        exec_prefix="${optarg}"
-      fi
-      ;;
-    --prefix)
-      echo_prefix=yes
-      ;;
-    --exec-prefix=*)
-      exec_prefix="${optarg}"
-      exec_prefix_set=yes
-      ;;
-    --exec-prefix)
-      echo_exec_prefix=yes
-      ;;
     --version)
       echo "@VERSION@"
       exit 0
@@ -161,12 +138,6 @@ fi
 #
 #  Output what we were asked
 #
-if test "${echo_prefix}" = yes; then
-  echo "${prefix}"
-fi
-if test "${echo_exec_prefix}" = yes; then
-  echo "${exec_prefix}"
-fi
 if test "${echo_cppflags}" = yes; then
   echo "${cppflags}"
 fi